import type { RequestHandlerOptions } from 'msw'; import { http } from 'msw'; import type { WebitelChatGetAgentChatsCounterResponse, WebitelChatGetAgentChatsResponse, WebitelChatMarkChatProcessedResponse } from '../_models'; export declare const getAgentChatServiceGetAgentChatsResponseMock: (overrideResponse?: Partial>) => WebitelChatGetAgentChatsResponse; export declare const getAgentChatServiceGetAgentChatsCounterResponseMock: (overrideResponse?: Partial>) => WebitelChatGetAgentChatsCounterResponse; export declare const getAgentChatServiceMarkChatProcessedResponseMock: () => WebitelChatMarkChatProcessedResponse; export declare const getAgentChatServiceGetAgentChatsMockHandler: (overrideResponse?: WebitelChatGetAgentChatsResponse | ((info: Parameters[1]>[0]) => Promise | WebitelChatGetAgentChatsResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getAgentChatServiceGetAgentChatsCounterMockHandler: (overrideResponse?: WebitelChatGetAgentChatsCounterResponse | ((info: Parameters[1]>[0]) => Promise | WebitelChatGetAgentChatsCounterResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getAgentChatServiceMarkChatProcessedMockHandler: (overrideResponse?: WebitelChatMarkChatProcessedResponse | ((info: Parameters[1]>[0]) => Promise | WebitelChatMarkChatProcessedResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getAgentChatServiceMock: () => import("msw").HttpHandler[];