import { Action, IApplicationSpec } from "../../util"; import { ServerStore } from "../ServerStore"; import { BaseClient } from "./BaseClient"; export declare class WebSocketClient extends BaseClient { private readonly socket; readonly isHuman = true; constructor(socket: WebSocket, store: ServerStore, id: string); protected handleMesssage(data: string): void; protected doSend(action: Action): void; close(): void; }