/** * Fetch with timeout support. * Wraps the standard fetch API with an AbortController to enforce request timeouts. * * @param url - The URL to fetch * @param options - Standard fetch options * @param timeoutMs - Timeout in milliseconds (optional) * @returns Promise * @throws Error if the request times out */ export declare function fetchWithTimeout(url: string, options?: RequestInit, timeoutMs?: number): Promise; //# sourceMappingURL=fetch.d.ts.map