import { FetchingStatus } from '../typings'; type Props = { pollingInterval: number; pollFn: () => Promise; autoStart?: boolean; }; export declare const usePolling: ({ pollingInterval, pollFn, autoStart }: Props) => { pollingStatus: FetchingStatus; poll: () => void; }; export {}; //# sourceMappingURL=usePolling.d.ts.map