export type HttpClientOptions = { baseUrl: string; jwt?: string; timeoutMs?: number; }; export declare class HttpClient { private readonly opts; private jwt?; constructor(opts: HttpClientOptions); setJwt(jwt: string | undefined): void; getJwt(): string | undefined; private url; get(path: string): Promise; post(path: string, body?: unknown): Promise; private request; } //# sourceMappingURL=http.d.ts.map