/** * 从 Windows 注册表读取系统代理配置 * 仅 Windows 平台生效,其他平台返回 undefined。 * 结果带 TTL 缓存,避免重复查询注册表,同时保证系统设置变更后生效。 */ export declare function getWindowsSystemProxy(): string | undefined; /** 清除系统代理缓存(应用内修改代理设置、或希望强制重新探测时调用) */ export declare function clearSystemProxyCache(): void; /** * 获取系统代理 URL * 优先级:环境变量 HTTPS_PROXY / HTTP_PROXY / ALL_PROXY > macOS scutil > Windows 注册表 * 环境变量每次实时读取(即时生效、零成本);OS 探测结果带 TTL 缓存 + 显式失效。 */ export declare function getSystemProxyUrl(): string | undefined; //# sourceMappingURL=system-proxy.d.ts.map