import { CLICommand } from '@coveo/cli-commons/command/cliCommand'; export default class Create extends CLICommand { static description: string; static flags: { setDefaultOrganization: import("@oclif/core/lib/interfaces").BooleanFlag; }; static args: { name: string; helpValue: string; description: string; required: boolean; }[]; run(): Promise; private createOrganization; private generateEndMessageFromOrgId; private get configuration(); }