/** HTTP proxy detection data. */
export interface HttpProxyInfo {
    /**
     * Whether the proxy data indicate that a proxy is enabled.
     */
    readonly isHttpProxyEnabled: boolean;
    /**
     * TODO: missing doc
     */
    readonly isUsingAutoConfig?: boolean;
    /**
     * Android: Host of the proxy server or null if proxy is not enabled.
     */
    readonly host?: string;
    /**
     * Android: Port of the proxy server or null if proxy is not enabled.
     */
    readonly port?: number;
    /**
     * Android: Comma separated list of host for which the proxy is ignored or null if there are no excluded hosts.
     */
    readonly exclusionList?: string;
    /**
     * Android: The URL of the current PAC script or null if there is no PAC script.
     */
    readonly pacFileUrl?: string;
}
//# sourceMappingURL=HttpProxyInfo.d.ts.map