import { HttpMethodType } from './HttpMethodType'; import { AxiosInstance } from 'axios'; export declare class HttpCommand { private hostUrl; private httpClient; constructor(hostUrl: string, httpClient: AxiosInstance); private getCompleteUrl; request: (url: string, method: HttpMethodType, headers?: { [key: string]: string; }, data?: object, params?: { [key: string]: string; }) => Promise; private makeCall; private handleError; }