import type { LemmaClient } from "@lemmaoracle/spec"; export type HttpMethod = "GET" | "POST"; export declare const requestJson: (client: LemmaClient) => (method: HttpMethod) => (path: string) => (body?: unknown) => Promise; export declare const get: (client: LemmaClient) => (path: string) => (body?: unknown) => Promise; export declare const post: (client: LemmaClient) => (path: string) => (body?: unknown) => Promise; //# sourceMappingURL=http.d.ts.map