import { CommandLineOptions } from '../../Command/commandDefinition'; declare const OPTION_LIST: readonly [{ readonly name: "no-default-organization"; readonly type: BooleanConstructor; readonly description: "Prevent using the defaultOrganizationUid from ~/.sosrc"; }, { readonly name: "organization-uid"; readonly type: StringConstructor; readonly description: "Organization UID"; }]; /** * Retrieves and displays detailed information about a specific organization * by its UID. If no organization UID is provided, uses the default organization * or prompts for selection from available organizations. * * @group Management:22 * * @example * ```bash * # Get default organization details * sos organization get * * # Get specific organization by UID * sos organization get --organization-uid abc123def456 * * # Force organization selection (skip default) * sos organization get --no-default-organization * ``` * * @throws {Error} When organization UID cannot be found or accessed * @throws {Error} When authentication is not valid or has expired * @throws {Error} When no organizations are available for selection * * @see {@link ../list/ List organizations for selection} * * @see {@link ../ Organization management commands} * * @since 0.3.0 */ export declare const organizationGet: { name: "get"; description: string; optionList: readonly [{ readonly name: "no-default-organization"; readonly type: BooleanConstructor; readonly description: "Prevent using the defaultOrganizationUid from ~/.sosrc"; }, { readonly name: "organization-uid"; readonly type: StringConstructor; readonly description: "Organization UID"; }]; commands: never[]; run(options: CommandLineOptions): Promise; }; export {};