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