/** * HTTP utilities for provider API calls. */ /** * Fetch with timeout using AbortController. * * @param url - The URL to fetch * @param options - Fetch options (headers, method, body, etc.) * @param timeoutMs - Timeout in milliseconds (defaults to REQUEST_TIMEOUT_MS) * @returns The fetch Response * @throws Error with message "Request timeout after Xs" if request times out */ export declare function fetchWithTimeout(url: string, options: RequestInit, timeoutMs?: number): Promise; //# sourceMappingURL=http.d.ts.map