/** * Retry an async operation with exponential backoff. * Throws the last error if all retries are exhausted. */ export declare function withRetry(fn: () => Promise, opts: { maxRetries: number; baseDelayMs: number; }): Promise; //# sourceMappingURL=retry.d.ts.map