import type { Connection } from "./0_connection.js"; export declare class ConnectionWebSocket implements Connection { #private; stateChangeHandler?: Connection["stateChangeHandler"]; constructor(url: string); get isConnected(): boolean; open(): Promise; read(p: Uint8Array): Promise; write(p: Uint8Array): Promise; close(): void; } //# sourceMappingURL=1_connection_web_socket.d.ts.map