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