export declare class ProxiesConf { proxySocksAddress: string | undefined; proxyTorAddress: string | undefined; reachingClearEp: string; forceTor: boolean; constructor(); static canReachClearEndpoint(proxiesConf: ProxiesConf | undefined): boolean; static canReachTorEndpoint(proxiesConf: ProxiesConf | undefined): boolean; static httpProxy(url: string, proxiesConf: ProxiesConf | undefined): string | undefined; static wsProxy(address: string, proxiesConf: ProxiesConf | undefined): string | undefined; private static chooseProxyAgent; }