import { Command } from '@oclif/command'; export default class CreateApp extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; description: string; }[]; static CollectContent: (isManifest?: boolean) => Promise; run(): Promise; }