import { AddProxyOptions, ClientWithConfig } from './types'; export declare const getHttpProxy: () => string; export declare const getHttpsProxy: () => string; export declare const addProxyToClient: (client: ClientWithConfig, { debug, httpsOnly, throwOnNoProxy, agentOptions, httpProxy, httpsProxy, ...opts }?: AddProxyOptions) => T;