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