import type { AuthMode, HttpMethod, JsonObject } from "./types.js"; export type QueryParamValue = string | number | boolean | readonly (string | number | boolean)[] | undefined; export interface RequestOptions { method?: HttpMethod; query?: Record; body?: JsonObject; } export declare class HttpClient { private baseUrl; private auth; constructor(baseUrl: string, auth: AuthMode); getBaseUrl(): string; setBaseUrl(baseUrl: string): void; setAuth(auth: AuthMode): void; getAuth(): AuthMode; private authorizationHeader; request(path: string, options?: RequestOptions): Promise; private executeOnce; } //# sourceMappingURL=http.d.ts.map