/// import { AgentOptions } from "https"; import Config from "../config"; import HttpClientException from "./httpClientException"; import ApiException from "../services/exception/apiException"; import ClientInterface from "./clientInterface"; import { IRequest } from "../typings/requestOptions"; declare class HttpURLConnectionClient implements ClientInterface { private static CHARSET; proxy?: AgentOptions; private agentOptions; request(endpoint: string, json: string, config: Config, requestOptions: IRequest.Options): Promise; post(endpoint: string, postParameters: [string, string][], config: Config): Promise; private createRequest; private getQuery; private doPostRequest; } export default HttpURLConnectionClient;