import { Command } from "../command"; export declare abstract class CommandRunner { abstract name: string; abstract commands: Array>; abstract defaultCommand?: Command; abstract run(): void; }