import { type ManagedWebSocketConnection } from "./ws-core"; import { type WebSocketTelemetryConnectionSnapshot } from "./ws-telemetry"; export declare class WebSocketLocalConnectionStore { private readonly connections; register(connection: ManagedWebSocketConnection): void; unregister(connectionId: string): void; getConnection(connectionId: string): ManagedWebSocketConnection | undefined; getConnections(connectionIds: string[]): ManagedWebSocketConnection[]; getTelemetrySnapshot(): WebSocketTelemetryConnectionSnapshot; closeAll(code?: number, reason?: string): void; } //# sourceMappingURL=ws-local-connection-store.d.ts.map