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