import type { WebSocketMockFunction, WebSocketRouteClassTypeWithGetParamsFromUrl } from '../../types/internal'; /** * Mock WebSocket for some API route. * Applicable only for routes with the `getParamsFromUrlOrThrow` method. * The mock is applied to a WebSocket that matches the route by url * (by methods `getParamsFromUrlOrThrow` and `isMatchUrl`). */ export declare const mockWebSocketRoute: (Route: WebSocketRouteClassTypeWithGetParamsFromUrl, webSocketMockFunction: WebSocketMockFunction, { skipLogs }?: { skipLogs?: boolean; }) => Promise;