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