type RequestMethod = "GET" | "POST" | "DELETE"; type RequestOptions = { method?: RequestMethod; query?: Record; body?: unknown; headers?: Record; }; export declare const requestJson: (path: string, options?: RequestOptions) => Promise; export declare const postJson: (path: string, body?: unknown, options?: Omit) => Promise; export declare const getJson: (path: string, options?: Omit) => Promise; export declare const deleteJson: (path: string, options?: Omit) => Promise; export {};