import React from 'react'; import '../styles/main.scss'; interface PullToRefreshProps { isPullable?: boolean; canFetchMore?: boolean; onRefresh: () => Promise; onFetchMore?: () => Promise; refreshingContent?: JSX.Element | string; pullingContent?: JSX.Element | string; children: JSX.Element; pullDownThreshold?: number; fetchMoreThreshold?: number; maxPullDownDistance?: number; resistance?: number; backgroundColor?: string; className?: string; } declare const PullToRefresh: React.FC; export default PullToRefresh;