import type { RequestHandlerOptions } from 'msw'; import { http } from 'msw'; import type { WebMeetingBackendCreateMeetingResponse, WebMeetingBackendMeetingView, WebMeetingBackendSatisfactionMeetingResponse } from '../_models'; export declare const getCreateMeetingResponseMock: (overrideResponse?: Partial>) => WebMeetingBackendCreateMeetingResponse; export declare const getGetMeetingViewResponseMock: (overrideResponse?: Partial>) => WebMeetingBackendMeetingView; export declare const getSatisfactionMeetingResponseMock: () => WebMeetingBackendSatisfactionMeetingResponse; export declare const getCreateMeetingMockHandler: (overrideResponse?: WebMeetingBackendCreateMeetingResponse | ((info: Parameters[1]>[0]) => Promise | WebMeetingBackendCreateMeetingResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getGetMeetingViewMockHandler: (overrideResponse?: WebMeetingBackendMeetingView | ((info: Parameters[1]>[0]) => Promise | WebMeetingBackendMeetingView), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getSatisfactionMeetingMockHandler: (overrideResponse?: WebMeetingBackendSatisfactionMeetingResponse | ((info: Parameters[1]>[0]) => Promise | WebMeetingBackendSatisfactionMeetingResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getMeetingServiceMock: () => import("msw").HttpHandler[];