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