/** * 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 timezone will be spoofed. Possble values: * 'automatic': Timezone is automatically set by the IP * 'manual': Timezone is manually overridden in the profile * 'off': Turn off the spoofing, use the original settings * @export */ export declare const TimezoneSpoofingType: { readonly Automatic: "automatic"; readonly Manual: "manual"; readonly Off: "off"; }; export type TimezoneSpoofingType = (typeof TimezoneSpoofingType)[keyof typeof TimezoneSpoofingType]; export declare function instanceOfTimezoneSpoofingType(value: any): boolean; export declare function TimezoneSpoofingTypeFromJSON(json: any): TimezoneSpoofingType; export declare function TimezoneSpoofingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimezoneSpoofingType; export declare function TimezoneSpoofingTypeToJSON(value?: TimezoneSpoofingType | null): any; export declare function TimezoneSpoofingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): TimezoneSpoofingType;