import { FolderInfo } from "../transform.mjs"; import { z } from "zod"; //#region src/cli/commands/organization/folder/update.d.ts declare const updateFolderOptionsSchema: z.ZodObject<{ organizationId: z.ZodUUID; folderId: z.ZodUUID; name: z.ZodString; }, z.core.$strip>; export type UpdateFolderOptions = z.input; /** * Update a folder's name. * @param options - Folder update options * @returns Updated folder details */ export declare function updateFolder(options: UpdateFolderOptions): Promise; //#endregion