import type { RequestHandlerOptions } from 'msw'; import { http } from 'msw'; import type { StorageCognitiveProfile, StorageListCognitiveProfile, StorageListCognitiveProfileVoices } from '../_models'; export declare const getSearchCognitiveProfileResponseMock: (overrideResponse?: Partial>) => StorageListCognitiveProfile; export declare const getCreateCognitiveProfileResponseMock: (overrideResponse?: Partial>) => StorageCognitiveProfile; export declare const getDeleteCognitiveProfileResponseMock: (overrideResponse?: Partial>) => StorageCognitiveProfile; export declare const getReadCognitiveProfileResponseMock: (overrideResponse?: Partial>) => StorageCognitiveProfile; export declare const getPatchCognitiveProfileResponseMock: (overrideResponse?: Partial>) => StorageCognitiveProfile; export declare const getUpdateCognitiveProfileResponseMock: (overrideResponse?: Partial>) => StorageCognitiveProfile; export declare const getSearchCognitiveProfileVoicesResponseMock: (overrideResponse?: Partial>) => StorageListCognitiveProfileVoices; export declare const getSearchCognitiveProfileMockHandler: (overrideResponse?: StorageListCognitiveProfile | ((info: Parameters[1]>[0]) => Promise | StorageListCognitiveProfile), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getCreateCognitiveProfileMockHandler: (overrideResponse?: StorageCognitiveProfile | ((info: Parameters[1]>[0]) => Promise | StorageCognitiveProfile), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getDeleteCognitiveProfileMockHandler: (overrideResponse?: StorageCognitiveProfile | ((info: Parameters[1]>[0]) => Promise | StorageCognitiveProfile), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getReadCognitiveProfileMockHandler: (overrideResponse?: StorageCognitiveProfile | ((info: Parameters[1]>[0]) => Promise | StorageCognitiveProfile), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getPatchCognitiveProfileMockHandler: (overrideResponse?: StorageCognitiveProfile | ((info: Parameters[1]>[0]) => Promise | StorageCognitiveProfile), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getUpdateCognitiveProfileMockHandler: (overrideResponse?: StorageCognitiveProfile | ((info: Parameters[1]>[0]) => Promise | StorageCognitiveProfile), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getSearchCognitiveProfileVoicesMockHandler: (overrideResponse?: StorageListCognitiveProfileVoices | ((info: Parameters[1]>[0]) => Promise | StorageListCognitiveProfileVoices), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getCognitiveProfileServiceMock: () => import("msw").HttpHandler[];