/// import { PullRefreshProps } from "./pull-refresh"; import { PullRefreshCompleted, PullRefreshLoading, PullRefreshLoosing, PullRefreshPulling } from "./pull-refresh-children"; interface PullRefreshInterface { (props: PullRefreshProps): JSX.Element; Pulling: typeof PullRefreshPulling; Loosing: typeof PullRefreshLoosing; Loading: typeof PullRefreshLoading; Completed: typeof PullRefreshCompleted; } declare const PullRefresh: PullRefreshInterface; export default PullRefresh;