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