import { Command, flags } from '@oclif/command'; export declare class AngularNew extends Command { static aliases: string[]; static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; template: flags.IOptionFlag; name: flags.IOptionFlag; username: flags.IOptionFlag; email: flags.IOptionFlag; }; static args: { name: string; }[]; run(): Promise; private runNew; }