import { Command, flags } from '@oclif/command'; declare class Create extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; options: flags.IOptionFlag; yes: import("@oclif/parser/lib/flags").IBooleanFlag; type: flags.IOptionFlag; }; static args: { name: string; }[]; run(): Promise<-1 | undefined>; } export = Create;