/** * 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. */ /** * * @export */ export declare const ProfileStorageLocation: { readonly Local: "local"; readonly Cloud: "cloud"; }; export type ProfileStorageLocation = (typeof ProfileStorageLocation)[keyof typeof ProfileStorageLocation]; export declare function instanceOfProfileStorageLocation(value: any): boolean; export declare function ProfileStorageLocationFromJSON(json: any): ProfileStorageLocation; export declare function ProfileStorageLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProfileStorageLocation; export declare function ProfileStorageLocationToJSON(value?: ProfileStorageLocation | null): any; export declare function ProfileStorageLocationToJSONTyped(value: any, ignoreDiscriminator: boolean): ProfileStorageLocation;