import { Command, CliCommandOption } from "../command"; import commander = require("commander"); export default class Run extends Command { commandString: string; description: string; helpCallback(): void; options: CliCommandOption[]; action(args: commander.Command): Promise; }