import { Connection } from '../../connection'; import { ArgsMapper } from '../../util'; import ExecCommand from './exec'; export default abstract class FileSystemCommand extends ExecCommand { protected abstract rootCmd: string; protected abstract argsMapper: ArgsMapper; private path; private options; constructor(connection: Connection, serial: string, path: P, options?: T); protected get rawCmd(): string; protected cast(): void; }