import { Command } from '@oclif/command'; export default class New extends Command { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; required: boolean; description: string; }[]; run(): Promise; }