import type { RequestHandlerOptions } from 'msw'; import { http } from 'msw'; import type { EngineCommunicationType, EngineListCommunicationType } from '../_models'; export declare const getSearchCommunicationTypeResponseMock: (overrideResponse?: Partial>) => EngineListCommunicationType; export declare const getCreateCommunicationTypeResponseMock: (overrideResponse?: Partial>) => EngineCommunicationType; export declare const getDeleteCommunicationTypeResponseMock: (overrideResponse?: Partial>) => EngineCommunicationType; export declare const getReadCommunicationTypeResponseMock: (overrideResponse?: Partial>) => EngineCommunicationType; export declare const getPatchCommunicationTypeResponseMock: (overrideResponse?: Partial>) => EngineCommunicationType; export declare const getUpdateCommunicationTypeResponseMock: (overrideResponse?: Partial>) => EngineCommunicationType; export declare const getSearchCommunicationTypeMockHandler: (overrideResponse?: EngineListCommunicationType | ((info: Parameters[1]>[0]) => Promise | EngineListCommunicationType), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getCreateCommunicationTypeMockHandler: (overrideResponse?: EngineCommunicationType | ((info: Parameters[1]>[0]) => Promise | EngineCommunicationType), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getDeleteCommunicationTypeMockHandler: (overrideResponse?: EngineCommunicationType | ((info: Parameters[1]>[0]) => Promise | EngineCommunicationType), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getReadCommunicationTypeMockHandler: (overrideResponse?: EngineCommunicationType | ((info: Parameters[1]>[0]) => Promise | EngineCommunicationType), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getPatchCommunicationTypeMockHandler: (overrideResponse?: EngineCommunicationType | ((info: Parameters[1]>[0]) => Promise | EngineCommunicationType), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getUpdateCommunicationTypeMockHandler: (overrideResponse?: EngineCommunicationType | ((info: Parameters[1]>[0]) => Promise | EngineCommunicationType), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getCommunicationTypeServiceMock: () => import("msw").HttpHandler[];