import { Command } from '@oclif/command'; export default class Manifest extends Command { static description: string; static args: { name: string; description: string; default: string; }[]; run(): Promise; }