import { ConnectionEvent, ConnectionMessage, ConnectionOpenResponse, ConnectionState, EventSource, IConnection, IStringDictionary, IWebsocketMessageFormatter, Promise } from "../common/Exports"; import { ProxyInfo } from "./ProxyInfo"; export declare class WebsocketConnection implements IConnection { private privUri; private privMessageFormatter; private privConnectionMessageAdapter; private privId; private privIsDisposed; constructor(uri: string, queryParameters: IStringDictionary, headers: IStringDictionary, messageFormatter: IWebsocketMessageFormatter, proxyInfo: ProxyInfo, connectionId?: string); dispose: () => void; isDisposed: () => boolean; readonly id: string; state: () => ConnectionState; open: () => Promise; send: (message: ConnectionMessage) => Promise; read: () => Promise; readonly events: EventSource; }