interface RetryOptions { retries?: number; interval?: number; } export declare const retry: (func: () => Promise, opts?: RetryOptions) => Promise; export {}; //# sourceMappingURL=retry.d.ts.map