/** * Utility functions for making resilient HTTP requests. */ export interface FetchWithRetryOptions extends RequestInit { timeoutMs?: number; maxRetries?: number; baseDelayMs?: number; } /** * Enhanced fetch with timeout and exponential backoff retry logic. */ export declare function fetchWithRetry(url: string, options?: FetchWithRetryOptions): Promise; //# sourceMappingURL=http.d.ts.map