import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import type { SearchCognitiveProfileParams, SearchCognitiveProfileVoicesParams, StorageCognitiveProfile, StorageCognitiveProfileServicePatchCognitiveProfileBody, StorageCognitiveProfileServiceUpdateCognitiveProfileBody, StorageCreateCognitiveProfileRequest, StorageListCognitiveProfile, StorageListCognitiveProfileVoices } from '../_models'; export declare const // --- title start getCognitiveProfileService: (axiosInstance?: AxiosInstance) => { searchCognitiveProfile: (params?: SearchCognitiveProfileParams, options?: AxiosRequestConfig) => Promise>; createCognitiveProfile: (storageCreateCognitiveProfileRequest: StorageCreateCognitiveProfileRequest, options?: AxiosRequestConfig) => Promise>; deleteCognitiveProfile: (id: string, options?: AxiosRequestConfig) => Promise>; readCognitiveProfile: (id: string, options?: AxiosRequestConfig) => Promise>; patchCognitiveProfile: (id: string, storageCognitiveProfileServicePatchCognitiveProfileBody: StorageCognitiveProfileServicePatchCognitiveProfileBody, options?: AxiosRequestConfig) => Promise>; updateCognitiveProfile: (id: string, storageCognitiveProfileServiceUpdateCognitiveProfileBody: StorageCognitiveProfileServiceUpdateCognitiveProfileBody, options?: AxiosRequestConfig) => Promise>; searchCognitiveProfileVoices: (id: string, params?: SearchCognitiveProfileVoicesParams, options?: AxiosRequestConfig) => Promise>; }; export type SearchCognitiveProfileResult = AxiosResponse; export type CreateCognitiveProfileResult = AxiosResponse; export type DeleteCognitiveProfileResult = AxiosResponse; export type ReadCognitiveProfileResult = AxiosResponse; export type PatchCognitiveProfileResult = AxiosResponse; export type UpdateCognitiveProfileResult = AxiosResponse; export type SearchCognitiveProfileVoicesResult = AxiosResponse;