import BaseCommand from '../../base.command'; import { RemoveModule } from '../../modules/backup/remove.module'; export default class RemoveCommand extends BaseCommand { commandClass: typeof RemoveCommand; commandModule: typeof RemoveModule; static description: string; static examples: string[]; static args: { backupId: import("@oclif/core/lib/interfaces/parser").Arg>; }; static flags: { environment: import("@oclif/core/lib/interfaces").OptionFlag; }; }