export declare const SUPERAGENT_REQUEST_TIMEOUT_MS: number; export interface XhrResponse { ok: boolean; status: number; json(): Promise; } export interface XhrFetchInit { method: string; headers?: Record; body?: string; timeoutMs?: number; } export declare function xhrFetch(url: string, init: XhrFetchInit): Promise; //# sourceMappingURL=xhrFetch.d.ts.map