import { HttpClientInterface, Method, Response, RequestInterface } from "./types";
export default class HttpClient implements HttpClientInterface {
    _sendRequestAxios(method: Method, request: RequestInterface): Promise<Response>;
    get(request: RequestInterface): Promise<Response>;
    post(request: RequestInterface): Promise<Response>;
}
