import { Interfaces } from '@oclif/core'; import { AutocompleteBase } from '../../base'; export default class Index extends AutocompleteBase { static description: string; static args: { name: string; description: string; required: boolean; }[]; static flags: Interfaces.FlagInput; static examples: string[]; run(): Promise; private updateCache; }