export type JsonRequestOptions = { method?: "GET" | "POST"; body?: unknown; headers?: Record; timeout?: number; signal?: AbortSignal; }; export declare const requestJson: (url: string, options?: JsonRequestOptions) => Promise; //# sourceMappingURL=request.d.ts.map