import { Command } from '@oclif/command'; export default class Action extends Command { static description: string; static args: ({ name: string; required: boolean; description?: undefined; } | { name: string; required: boolean; description: string; })[]; run(): Promise; catch(e: Error | any): Promise; }