import { AxiosProxyConfig, AxiosRequestConfig, Method } from "axios"; export declare class Connectivity { private static readonly logger; static sendRequest(url: string, requestPath: string, proxy: string | undefined, json: boolean, headers?: any): Promise; static sendPostRequest(url: string, requestPath: string, body: Record, proxy: string | undefined, json: boolean, headers?: any): Promise; static getAxiosRequestConfig(url: string, method: Method, body: Record | undefined, proxy: string, json: boolean, headers?: any): AxiosRequestConfig; private static send; static convertProxy(proxy: string | undefined): AxiosProxyConfig | undefined; }