import type { RequestHandlerOptions } from 'msw'; import { http } from 'msw'; import type { EngineListRoutingOutboundCall, EngineMovePositionRoutingOutboundCallResponse, EngineRoutingOutboundCall } from '../_models'; export declare const getSearchRoutingOutboundCallResponseMock: (overrideResponse?: Partial>) => EngineListRoutingOutboundCall; export declare const getCreateRoutingOutboundCallResponseMock: (overrideResponse?: Partial>) => EngineRoutingOutboundCall; export declare const getMovePositionRoutingOutboundCallResponseMock: (overrideResponse?: Partial>) => EngineMovePositionRoutingOutboundCallResponse; export declare const getDeleteRoutingOutboundCallResponseMock: (overrideResponse?: Partial>) => EngineRoutingOutboundCall; export declare const getReadRoutingOutboundCallResponseMock: (overrideResponse?: Partial>) => EngineRoutingOutboundCall; export declare const getPatchRoutingOutboundCallResponseMock: (overrideResponse?: Partial>) => EngineRoutingOutboundCall; export declare const getUpdateRoutingOutboundCallResponseMock: (overrideResponse?: Partial>) => EngineRoutingOutboundCall; export declare const getSearchRoutingOutboundCallMockHandler: (overrideResponse?: EngineListRoutingOutboundCall | ((info: Parameters[1]>[0]) => Promise | EngineListRoutingOutboundCall), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getCreateRoutingOutboundCallMockHandler: (overrideResponse?: EngineRoutingOutboundCall | ((info: Parameters[1]>[0]) => Promise | EngineRoutingOutboundCall), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getMovePositionRoutingOutboundCallMockHandler: (overrideResponse?: EngineMovePositionRoutingOutboundCallResponse | ((info: Parameters[1]>[0]) => Promise | EngineMovePositionRoutingOutboundCallResponse), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getDeleteRoutingOutboundCallMockHandler: (overrideResponse?: EngineRoutingOutboundCall | ((info: Parameters[1]>[0]) => Promise | EngineRoutingOutboundCall), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getReadRoutingOutboundCallMockHandler: (overrideResponse?: EngineRoutingOutboundCall | ((info: Parameters[1]>[0]) => Promise | EngineRoutingOutboundCall), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getPatchRoutingOutboundCallMockHandler: (overrideResponse?: EngineRoutingOutboundCall | ((info: Parameters[1]>[0]) => Promise | EngineRoutingOutboundCall), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getUpdateRoutingOutboundCallMockHandler: (overrideResponse?: EngineRoutingOutboundCall | ((info: Parameters[1]>[0]) => Promise | EngineRoutingOutboundCall), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getRoutingOutboundCallServiceMock: () => import("msw").HttpHandler[];