import CommandBase from '@anycli/command'; import Engine from './engine'; export default class Command extends CommandBase { static type: string; engine: Engine; run(): Promise; protected commandNotFound(id: string): Promise; protected showHelp(): void; }