export interface MacProxySettings { ExceptionsList?: string[]; ExcludeSimpleHostnames?: "1" | "0"; FTPPassive?: "1" | "0"; HTTPEnable?: "1" | "0"; HTTPPort?: string; HTTPProxy?: string; HTTPUser?: string; HTTPSEnable?: "1" | "0"; HTTPSProxy?: string; HTTPSPort?: string; HTTPSUser?: string; SOCKSEnable?: "1" | "0"; SOCKSProxy?: string; SOCKSPort?: string; SOCKSUser?: string; ProxyAutoConfigEnable?: "1" | "0"; ProxyAutoDiscoveryEnable?: "1" | "0"; ProxyAutoConfigURLString?: string; } export declare function getMacSystemProxy(): Promise;