interface RetryOptions { maxAttempts?: number; baseDelay?: number; maxDelay?: number; shouldRetry?: (error: any) => boolean; } export declare function withRetry(fn: () => Promise, options?: RetryOptions): Promise; export {}; //# sourceMappingURL=retry.d.ts.map