/** * Retry utility for handling transient failures */ export interface RetryOptions { maxAttempts?: number; initialDelay?: number; maxDelay?: number; backoffFactor?: number; retryableErrors?: Array Error>; } /** * Retry a function with exponential backoff */ export declare function retry(fn: () => Promise, options?: RetryOptions): Promise; /** * Sleep for a specified duration */ export declare function sleep(ms: number): Promise; //# sourceMappingURL=retry.d.ts.map