import { WrapOptions } from "retry"; /** * Default retry options for doWithRetry. */ export declare const DefaultRetryOptions: RetryOptions; export interface RetryOptions extends WrapOptions { log?: boolean; } /** * Generic typed retry support * Perform the task, retrying according to the retry options * @param {() => Promise} what * @param {string} description * @param {Object} opts * @return {Promise} */ export declare function doWithRetry(what: () => Promise, description: string, opts?: RetryOptions): Promise; //# sourceMappingURL=retry.d.ts.map