import { Interceptor, Middleware, Routes } from '@gaman/common/types/index.js'; import { ExceptionHandler } from '@gaman/core/index.js'; import { Websocket, WebsocketMiddleware } from '../types/websocket.types.js'; export declare function isInterceptor(v: any): v is Interceptor; export declare function isMiddleware(v: any): v is Middleware; export declare function isExceptionHandler(v: any): v is ExceptionHandler; export declare function isRoutes(v: any): v is Routes; export declare function isWebsocket(v: any): v is Websocket; export declare function isWebsocketMiddleware(v: any): v is WebsocketMiddleware;