/** * 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 audio will be spoofed. Possible values: * 'noise': Add some noise to the Audio generation * 'block': Completely block the Audio API * 'off': Turn off the spoofing, use the original settings * @export */ export declare const AudioSpoofingType: { readonly Off: "off"; readonly Noise: "noise"; readonly Block: "block"; }; export type AudioSpoofingType = (typeof AudioSpoofingType)[keyof typeof AudioSpoofingType]; export declare function instanceOfAudioSpoofingType(value: any): boolean; export declare function AudioSpoofingTypeFromJSON(json: any): AudioSpoofingType; export declare function AudioSpoofingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AudioSpoofingType; export declare function AudioSpoofingTypeToJSON(value?: AudioSpoofingType | null): any; export declare function AudioSpoofingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): AudioSpoofingType;