import { Connection } from '../../connection'; import TransportCommand from '../abstract/transport'; export default class MonkeyCommand extends TransportCommand { protected Cmd: string; protected keepAlive: boolean; constructor(connection: Connection, serial: string, port: number); protected postExecute(): Promise; }