/** * 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 screen will be spoofed. Possible values: * 'automatic': Automatically override the screen resolution based on the fingerprint. * 'manual': Manually override the screen resolution. * 'off': Turn off the spoofing, use the original settings. * @export */ export declare const ScreenSpoofingType: { readonly Automatic: "automatic"; readonly Manual: "manual"; readonly Off: "off"; }; export type ScreenSpoofingType = (typeof ScreenSpoofingType)[keyof typeof ScreenSpoofingType]; export declare function instanceOfScreenSpoofingType(value: any): boolean; export declare function ScreenSpoofingTypeFromJSON(json: any): ScreenSpoofingType; export declare function ScreenSpoofingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScreenSpoofingType; export declare function ScreenSpoofingTypeToJSON(value?: ScreenSpoofingType | null): any; export declare function ScreenSpoofingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): ScreenSpoofingType;