interface AsyncPollOptions { interval: number; timeout: number; } export declare function asyncPoll(fn: () => Promise, conditionFn: (d: T) => boolean, options: AsyncPollOptions): Promise; export default asyncPoll; //# sourceMappingURL=index.d.ts.map