import { Connection } from '../../connection'; import RawCommand from '../abstract/raw'; export default class TcpCommand extends RawCommand { protected Cmd: string; constructor(connection: Connection, serial: string, port: number, host: string | void); }