import { CommandLineOptions } from '../../Command/commandDefinition'; declare const OPTION_LIST: readonly [{ readonly name: "organization-uid"; readonly type: StringConstructor; readonly description: "Organization UID"; }]; /** * Sets a default organization that will be used automatically in subsequent CLI commands * that require an organization context. This eliminates the need to specify the organization * UID for each command. The default organization is stored in the ~/.sosrc configuration file. * * @group Management:23 * * @example * ```bash * # Interactive selection of default organization * sos organization set-default * * # Set specific organization as default * sos organization set-default --organization-uid abc123 * ``` * * @remarks * The default organization can be overridden using the SOS_ORGANIZATION_UID environment variable * or by using the --organization-uid flag in individual commands. * * @throws {Error} When organization UID is invalid or inaccessible * * @since 1.0.0 */ export declare const organizationSetDefault: { name: "set-default"; description: string; optionList: readonly [{ readonly name: "organization-uid"; readonly type: StringConstructor; readonly description: "Organization UID"; }]; commands: never[]; run(options: CommandLineOptions): Promise; }; export {};