/** * Realtime data-channel event bridge. * * The cascaded bridge (`eventBridge.ts`) is driven by NeuroLink's event emitter. */ import type { RealtimeEventBridgeHandle, RealtimeEventBridgeParams } from "../../types/index.js"; /** * Attach the realtime event bridge to a room. * * Returns `publishEvent` (worker → browser), `requestConfirmation` (HITL * round-trip), and `dispose` (remove the control listener, decline anything * still pending). */ export declare function attachRealtimeEventBridge(params: RealtimeEventBridgeParams): Promise;