/** * 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 fonts will be spoofed. Possible values: * 'automatic': Spoof fonts based on the browser fingerpint. * 'off': Don't spoof fonts, use the real fonts of your machine. * @export */ export declare const FontSpoofingType: { readonly Automatic: "automatic"; readonly Off: "off"; }; export type FontSpoofingType = (typeof FontSpoofingType)[keyof typeof FontSpoofingType]; export declare function instanceOfFontSpoofingType(value: any): boolean; export declare function FontSpoofingTypeFromJSON(json: any): FontSpoofingType; export declare function FontSpoofingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): FontSpoofingType; export declare function FontSpoofingTypeToJSON(value?: FontSpoofingType | null): any; export declare function FontSpoofingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): FontSpoofingType;