export declare function getFetch(): typeof fetch; export interface FetchOptions { timeout?: number; method?: string; headers?: Record; body?: string; signal?: AbortSignal; } export declare function fetchWithTimeout(url: string, options?: FetchOptions): Promise; export declare function postJSON(url: string, body: unknown, timeout?: number): Promise;