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