/** * 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. */ /** * Defines whether the browser can save login credentials. Possible values are: * 'enabled': Credential saving is allowed. * 'disabled': Credential saving is blocked. * @export */ export declare const PasswordManagerType: { readonly Enabled: "enabled"; readonly Disabled: "disabled"; }; export type PasswordManagerType = (typeof PasswordManagerType)[keyof typeof PasswordManagerType]; export declare function instanceOfPasswordManagerType(value: any): boolean; export declare function PasswordManagerTypeFromJSON(json: any): PasswordManagerType; export declare function PasswordManagerTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordManagerType; export declare function PasswordManagerTypeToJSON(value?: PasswordManagerType | null): any; export declare function PasswordManagerTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): PasswordManagerType;