export interface HttpFetchOptions { format: "json" | "text" | "json-ld" | "og-meta" | "html"; headers?: Record; timeout?: number; } /** * Fetch data from an HTTP/HTTPS URL */ export declare function fetch(url: string, options: HttpFetchOptions): Promise; //# sourceMappingURL=http.d.ts.map