import { AxiosRequestConfig } from 'axios'; import { HttpResponse } from './httpResponse'; import { Http } from './http'; export declare class HttpAdapterAxios implements Http { private _clientImpl; constructor(baseURL: string, options?: AxiosRequestConfig); private static mountError; get(url: string, options?: any | AxiosRequestConfig): Promise; post(url: string, payload: any, options?: any | AxiosRequestConfig): Promise; put(url: string, payload: any, options?: any | AxiosRequestConfig): Promise; delete(url: string, options?: any | AxiosRequestConfig): Promise; }