import { FolderInfo } from "../transform.mjs"; import { z } from "zod"; //#region src/cli/commands/organization/folder/get.d.ts declare const getFolderOptionsSchema: z.ZodObject<{ organizationId: z.ZodUUID; folderId: z.ZodUUID; }, z.core.$strip>; export type GetFolderOptions = z.input; /** * Get detailed information about a folder. * @param options - Folder get options * @returns Folder details */ export declare function getFolder(options: GetFolderOptions): Promise; //#endregion