/** * Retrieves and displays all organizations that the currently authenticated * account has access to. This command helps users understand which organizations * they can work with and select appropriate targets for other CLI operations. * * @group Management:21 * * @example * ```bash * # List all accessible organizations * sos organization list * ``` * * @throws {Error} When authentication is not valid or has expired * @throws {Error} When organization access cannot be determined * * @see {@link ../get/ Get detailed organization information} * * @since 0.3.0 */ export declare const organizationList: { name: "list"; description: string; optionList: never[]; commands: never[]; run(): Promise; };