/** * Retry a given promise with gradually increasing delay. * * @param promise a function that returns a promise to retry * @param maxRetries the maximum number of times to retry * @param initialDelay the initial value to delay before retrying (in milliseconds) * @returns a promise resolving to the result of the promise from the promise generating function, or undefined */ export declare function retry(promise: (n: number) => Promise, maxRetries: number, initialDelay?: number): Promise; //# sourceMappingURL=retry.d.ts.map