import React from 'react' import { RefreshControl as RNRefreshControl } from 'react-native' interface RefreshControlProps { refreshing: boolean onRefresh: () => void } export default function RefreshControl({ refreshing, onRefresh, }: RefreshControlProps) { return ( ) }