import { JSON, ProxyType } from './types'; export default function ParseProxy(type: ProxyType, options: Record): { proxyType: "direct" | "system"; proxyOptions?: undefined; } | { proxyType: "pac"; proxyOptions: Record; } | { proxyType: "manual"; proxyOptions: Record; } | { proxyType: "socks"; proxyOptions: { socksProxy: string | number | true | JSON[] | { [key: string]: JSON; }; socksVersion: number; }; } | { proxyType: "socks"; proxyOptions: { socksProxy: string | number | true | JSON[] | { [key: string]: JSON; }; socksVersion?: undefined; }; }; //# sourceMappingURL=proxy.d.ts.map