import { Command } from '@oclif/command'; export default class Build extends Command { static description: string; static examples: string[] | undefined; static args: { name: string; description: string; required: boolean; }[]; run(): Promise; }