import { AxiosResponse } from "axios"; export declare type HttpMethod = "GET" | "POST" | "PUT" | "PATCH"; export declare class HttpRequestHandler { constructor(); call(url: string, method?: HttpMethod, body?: any, options?: any, headers?: any): Promise>; }