/** * 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. */ /** * Specifies how the hardwareConcurrency will be spoofed. Possible values: * 'automatic': Automatically set the values based on the fingerprint. * 'manual': Manually set the value in the profile. Valid values: 1, 2, 4, 8, 12, 16. * 'off': Turn off the spoofing, use the original settings. * @export */ export declare const HardwareConcurrencySpoofingType: { readonly Automatic: "automatic"; readonly Manual: "manual"; readonly Off: "off"; }; export type HardwareConcurrencySpoofingType = (typeof HardwareConcurrencySpoofingType)[keyof typeof HardwareConcurrencySpoofingType]; export declare function instanceOfHardwareConcurrencySpoofingType(value: any): boolean; export declare function HardwareConcurrencySpoofingTypeFromJSON(json: any): HardwareConcurrencySpoofingType; export declare function HardwareConcurrencySpoofingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): HardwareConcurrencySpoofingType; export declare function HardwareConcurrencySpoofingTypeToJSON(value?: HardwareConcurrencySpoofingType | null): any; export declare function HardwareConcurrencySpoofingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): HardwareConcurrencySpoofingType;