/** * WebSocket handler for real-time sync. */ import type { FastifyInstance } from 'fastify'; import '@fastify/websocket'; import type { CoordinatorService } from '../service/coordinator-service.js'; /** * Register WebSocket handler. */ export declare function registerWebSocket(app: FastifyInstance, service: CoordinatorService, basePath: string): void; //# sourceMappingURL=websocket.d.ts.map