import { FolderInfo } from "../transform.mjs"; import { z } from "zod"; //#region src/cli/commands/organization/folder/create.d.ts declare const createFolderOptionsSchema: z.ZodObject<{ organizationId: z.ZodUUID; parentFolderId: z.ZodOptional; name: z.ZodString; }, z.core.$strip>; export type CreateFolderOptions = z.input; /** * Create a new folder in an organization. * @param options - Folder creation options * @returns Created folder details */ export declare function createFolder(options: CreateFolderOptions): Promise; //#endregion