import { WrapOptions } from "retry"; /** * Default retry options for doWithRetry. */ export declare const DefaultRetryOptions: WrapOptions; /** * 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?: WrapOptions): Promise;