import { HttpProxyAgent } from 'http-proxy-agent'; import { HttpsProxyAgent } from 'https-proxy-agent'; import type https from 'node:https'; export declare function createProxiedHttpAgent(proxyUrl: string, agentOptions?: https.AgentOptions): HttpProxyAgent; export declare function createProxiedHttpsAgent(proxyUrl: string, agentOptions?: https.AgentOptions): HttpsProxyAgent;