//#region src/lib/retry.d.ts type RetryOptions = { maxRetries: number; minWait: number; maxWait: number; }; declare const withRetry: (fn: () => Promise, opts?: Partial) => Promise; //#endregion export { withRetry }; //# sourceMappingURL=retry.d.ts.map