export declare class HTTPClient {
    private baseUrl;
    private apiKey;
    constructor(baseUrl: string, apiKey: string);
    private request;
    protected get<T>(path: string, options?: RequestInit): Promise<T>;
    protected post<T>(path: string, data?: any, options?: RequestInit): Promise<T>;
}
