export interface RequestOptions { method?: string; headers?: Record; body?: unknown; timeout?: number; signal?: AbortSignal; } export declare function fetchJSON(url: URL | string, options?: RequestOptions): Promise; //# sourceMappingURL=http.d.ts.map