///
///
export default class ProxyUtil {
static env: NodeJS.ProcessEnv;
static get httpProxy(): string | undefined;
static get httpsProxy(): string | undefined;
static get noProxy(): string | undefined;
static shouldDodgeProxy(host: string): boolean;
static usingProxy(host?: string): boolean;
static get sslCertDir(): Array;
static get sslCertFile(): Array;
static get certs(): Array;
static agent(https: boolean, host?: string): any;
}