import { z } from "zod"; //#region src/cli/commands/organization/tree.d.ts export interface OrganizationTreeOptions { organizationId?: string; depth?: number; } interface OrganizationTreeJson { organizationId: string; organizationName: string; folders: FolderTreeJson[]; } interface FolderTreeJson { id: string; name: string; children: FolderTreeJson[]; } /** * Display a tree view of organizations and their folder hierarchy. * @param options - Tree display options * @returns Organization tree as structured data */ export declare function organizationTree(options?: OrganizationTreeOptions): Promise; //#endregion