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