import { Command } from "@oclif/core"; export default class Generate extends Command { static description: string; static examples: string[]; static flags: { flowJsonPath: import("@oclif/core/lib/interfaces").OptionFlag; }; static args: { name: string; description: string; required: boolean; }[]; run(): Promise; }