/** * 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 the source location for profile import. * @export * @interface ImportProfileRequest */ export interface ImportProfileRequest { /** * The file path from which the profile will be imported. * @type {string} * @memberof ImportProfileRequest */ path: string; } /** * Check if a given object implements the ImportProfileRequest interface. */ export declare function instanceOfImportProfileRequest(value: object): value is ImportProfileRequest; export declare function ImportProfileRequestFromJSON(json: any): ImportProfileRequest; export declare function ImportProfileRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImportProfileRequest; export declare function ImportProfileRequestToJSON(json: any): ImportProfileRequest; export declare function ImportProfileRequestToJSONTyped(value?: ImportProfileRequest | null, ignoreDiscriminator?: boolean): any;