import * as oclif from "@oclif/command"; export default class GenerateModel extends oclif.Command { static description: string; static args: { name: string; description: string; required: boolean; }[]; run(): Promise; }