import type { RequestHandlerOptions } from 'msw'; import { http } from 'msw'; import type { WebitelCasesLinkCommunicationResponse, WebitelCasesListCommunicationsResponse, WebitelCasesUnlinkCommunicationResponse } from '../_models'; export declare const getListCommunicationsResponseMock: (overrideResponse?: Partial>) => WebitelCasesListCommunicationsResponse; export declare const getLinkCommunicationResponseMock: (overrideResponse?: Partial>) => WebitelCasesLinkCommunicationResponse; export declare const getUnlinkCommunicationResponseMock: (overrideResponse?: Partial>) => WebitelCasesUnlinkCommunicationResponse; export declare const getListCommunicationsMockHandler: (overrideResponse?: WebitelCasesListCommunicationsResponse | ((info: Parameters[1]>[0]) => Promise | WebitelCasesListCommunicationsResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getLinkCommunicationMockHandler: (overrideResponse?: WebitelCasesLinkCommunicationResponse | ((info: Parameters[1]>[0]) => Promise | WebitelCasesLinkCommunicationResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getUnlinkCommunicationMockHandler: (overrideResponse?: WebitelCasesUnlinkCommunicationResponse | ((info: Parameters[1]>[0]) => Promise | WebitelCasesUnlinkCommunicationResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getCaseCommunicationsMock: () => import("msw").HttpHandler[];