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