import { CLICommand } from '@coveo/cli-commons/command/cliCommand'; import type { Example } from '@oclif/core/lib/interfaces'; export default class Get extends CLICommand { static description: string; static args: { name: string; description: string; required: boolean; }[]; static examples: Example[]; run(): Promise; }