import { Connection } from '../../connection'; import ExecCommand from '../abstract/exec'; export default class ShellCommand extends ExecCommand { protected rawCmd: string; constructor(connection: Connection, serial: string, command: string); protected cast(value: string): string; }