/** * Calls a given function and keeps calling it after the specified delay has passed. */ export declare const poll: (fn: () => Promise, delayOrDelayCallback: number | (() => number), shouldStopPolling: () => boolean | Promise) => Promise; //# sourceMappingURL=polling.d.ts.map