import { CLICommand } from '@coveo/cli-commons/command/cliCommand'; import type { Example } from '@oclif/core/lib/interfaces'; export default class Set extends CLICommand { static description: string; static flags: { organization: import("@oclif/core/lib/interfaces").OptionFlag; }; static examples: Example[]; run(): Promise; private verifyOrganization; }