import { FC } from 'react'; export interface RefreshProps { onRefresh?: () => void; isRefreshing?: boolean; } declare const Refresh: FC; export default Refresh;