export declare class HttpClient { private baseUrl; private basePath; constructor(baseUrl: string, basePath?: string); private url; get(path: string): Promise<{ [key: string]: any; }>; post(path: string, body: any): Promise<{ [key: string]: any; }>; private headers; private handleResponse; }