interface FetchWithRetryOptions extends RequestInit { maxRetries?: number; baseDelay?: number; } /** * Fetch utility with retry logic * Retries up to 5 times with exponential backoff */ export declare const fetchWithRetry: (url: string, options?: FetchWithRetryOptions) => Promise; export {};