import type { WSListenCallback } from '../PerfectWS.js'; declare const DATA_MIDDLEWARE_OUTPUT: unique symbol; /** A middleware whose parsed output becomes the input of the following route handlers. */ export type WSDataMiddleware = WSListenCallback & { readonly [DATA_MIDDLEWARE_OUTPUT]: Output; }; export {};