import type { RequestHandlerOptions } from 'msw'; import { http } from 'msw'; import type { WebitelChatEmptyResponse, WebitelChatLookup } from '../_models'; export declare const getContactLinkingServiceCreateContactFromConversationResponseMock: (overrideResponse?: Partial>) => WebitelChatLookup; export declare const getContactLinkingServiceLinkContactToClientResponseMock: () => WebitelChatEmptyResponse; export declare const getContactLinkingServiceCreateContactFromConversationMockHandler: (overrideResponse?: WebitelChatLookup | ((info: Parameters[1]>[0]) => Promise | WebitelChatLookup), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getContactLinkingServiceLinkContactToClientMockHandler: (overrideResponse?: WebitelChatEmptyResponse | ((info: Parameters[1]>[0]) => Promise | WebitelChatEmptyResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getContactLinkingServiceMock: () => import("msw").HttpHandler[];