/// <reference types="node" />
import { EventEmitter } from 'stream';
import WebSocket from 'ws';
declare type WSConfig = {
    host: string;
    port: string;
};
export default class WSClient extends EventEmitter {
    private readonly host;
    private readonly port;
    config: WSConfig;
    constructor(host: string, port: string);
    connect(): WebSocket;
}
export {};
//# sourceMappingURL=wsClient.d.ts.map