/** * Copyright 2025 Chris Bunting * * Retry Logic - Exponential backoff with jitter */ export interface RetryOptions { maxRetries?: number; baseDelay?: number; maxDelay?: number; retryable?: (error: Error) => boolean; } /** * Retry a function with exponential backoff */ export declare function retry(fn: () => Promise, options?: RetryOptions): Promise; //# sourceMappingURL=retry.d.ts.map