import { Command, flags } from '@oclif/command'; export default class DevCode extends Command { static description: string; static aliases: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; name: flags.IOptionFlag; force: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; }[]; run(): Promise; }