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