import type { RequestHandlerOptions } from 'msw'; import { http } from 'msw'; import type { WebitelImApiGatewayV1AddMemberResponse, WebitelImApiGatewayV1RemoveMemberResponse, WebitelImApiGatewayV1SearchLeftResponse, WebitelImApiGatewayV1SearchThreadResponse, WebitelImApiGatewayV1SearchVariablesResponse, WebitelImApiGatewayV1Thread, WebitelImApiGatewayV1ThreadManagementCreateResponse, WebitelImApiGatewayV1ThreadVariables, WebitelImApiGatewayV1TransferResponse } from '../_models'; export declare const getThreadManagementSearchResponseMock: (overrideResponse?: Partial>) => WebitelImApiGatewayV1SearchThreadResponse; export declare const getThreadManagementCreateResponseMock: (overrideResponse?: Partial>) => WebitelImApiGatewayV1ThreadManagementCreateResponse; export declare const getThreadManagementSearchLeftResponseMock: (overrideResponse?: Partial>) => WebitelImApiGatewayV1SearchLeftResponse; export declare const getThreadManagementGetResponseMock: (overrideResponse?: Partial>) => WebitelImApiGatewayV1Thread; export declare const getThreadManagementAddMemberResponseMock: (overrideResponse?: Partial>) => WebitelImApiGatewayV1AddMemberResponse; export declare const getThreadManagementRemoveMemberResponseMock: () => WebitelImApiGatewayV1RemoveMemberResponse; export declare const getThreadManagementTransferResponseMock: (overrideResponse?: Partial>) => WebitelImApiGatewayV1TransferResponse; export declare const getThreadManagementLocateVariablesResponseMock: (overrideResponse?: Partial>) => WebitelImApiGatewayV1ThreadVariables; export declare const getThreadManagementSetVariablesResponseMock: (overrideResponse?: Partial>) => WebitelImApiGatewayV1ThreadVariables; export declare const getThreadManagementFlushVariablesResponseMock: (overrideResponse?: Partial>) => WebitelImApiGatewayV1ThreadVariables; export declare const getThreadManagementSearchVariablesResponseMock: (overrideResponse?: Partial>) => WebitelImApiGatewayV1SearchVariablesResponse; export declare const getThreadManagementSearchMockHandler: (overrideResponse?: WebitelImApiGatewayV1SearchThreadResponse | ((info: Parameters[1]>[0]) => Promise | WebitelImApiGatewayV1SearchThreadResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getThreadManagementCreateMockHandler: (overrideResponse?: WebitelImApiGatewayV1ThreadManagementCreateResponse | ((info: Parameters[1]>[0]) => Promise | WebitelImApiGatewayV1ThreadManagementCreateResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getThreadManagementSearchLeftMockHandler: (overrideResponse?: WebitelImApiGatewayV1SearchLeftResponse | ((info: Parameters[1]>[0]) => Promise | WebitelImApiGatewayV1SearchLeftResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getThreadManagementGetMockHandler: (overrideResponse?: WebitelImApiGatewayV1Thread | ((info: Parameters[1]>[0]) => Promise | WebitelImApiGatewayV1Thread), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getThreadManagementAddMemberMockHandler: (overrideResponse?: WebitelImApiGatewayV1AddMemberResponse | ((info: Parameters[1]>[0]) => Promise | WebitelImApiGatewayV1AddMemberResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getThreadManagementRemoveMemberMockHandler: (overrideResponse?: WebitelImApiGatewayV1RemoveMemberResponse | ((info: Parameters[1]>[0]) => Promise | WebitelImApiGatewayV1RemoveMemberResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getThreadManagementTransferMockHandler: (overrideResponse?: WebitelImApiGatewayV1TransferResponse | ((info: Parameters[1]>[0]) => Promise | WebitelImApiGatewayV1TransferResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getThreadManagementLocateVariablesMockHandler: (overrideResponse?: WebitelImApiGatewayV1ThreadVariables | ((info: Parameters[1]>[0]) => Promise | WebitelImApiGatewayV1ThreadVariables), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getThreadManagementSetVariablesMockHandler: (overrideResponse?: WebitelImApiGatewayV1ThreadVariables | ((info: Parameters[1]>[0]) => Promise | WebitelImApiGatewayV1ThreadVariables), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getThreadManagementFlushVariablesMockHandler: (overrideResponse?: WebitelImApiGatewayV1ThreadVariables | ((info: Parameters[1]>[0]) => Promise | WebitelImApiGatewayV1ThreadVariables), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getThreadManagementSearchVariablesMockHandler: (overrideResponse?: WebitelImApiGatewayV1SearchVariablesResponse | ((info: Parameters[1]>[0]) => Promise | WebitelImApiGatewayV1SearchVariablesResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getWebitelImApiGatewayV1ThreadmanagementMock: () => import("msw").HttpHandler[];