/** * kameleo-local-api * You can use the following API endpoints to communicate with the local running Kameleo programmatically. * * The version of the OpenAPI document: 4.4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Proxy connection settings of the profiles. Possible values: * 'none': Direct connection without any proxy. * 'http': Use a HTTP proxy for upstream communication. * 'socks5': Use a SOCKS5 proxy for upstream communication. * 'ssh': Use an SSH connection for upstream communication. Basically a SOCKS5 proxy created at the given SSH host. * @export */ export declare const ProxyConnectionType: { readonly None: "none"; readonly Http: "http"; readonly Socks5: "socks5"; readonly Ssh: "ssh"; }; export type ProxyConnectionType = (typeof ProxyConnectionType)[keyof typeof ProxyConnectionType]; export declare function instanceOfProxyConnectionType(value: any): boolean; export declare function ProxyConnectionTypeFromJSON(json: any): ProxyConnectionType; export declare function ProxyConnectionTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProxyConnectionType; export declare function ProxyConnectionTypeToJSON(value?: ProxyConnectionType | null): any; export declare function ProxyConnectionTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): ProxyConnectionType;