import { HttpClientConfig } from "./types"; export declare class HttpClient { private readonly http; constructor(apiKey: string, config?: HttpClientConfig); get(path: string): Promise; post(path: string, data?: unknown): Promise; private handleError; }