import BaseCommand from '../../base.command'; import { StartModule } from '../../modules/dbms/start.module'; export default class StartCommand extends BaseCommand { commandClass: typeof StartCommand; commandModule: typeof StartModule; static description: string; static examples: string[]; static args: { dbmss: import("@oclif/core/lib/interfaces/parser").Arg>; }; static strict: boolean; static flags: { environment: import("@oclif/core/lib/interfaces").OptionFlag; }; }