import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The access level of the folder within the workspace. */ export declare const AccessLevel: { readonly Write: "write"; readonly Read: "read"; }; /** * The access level of the folder within the workspace. */ export type AccessLevel = ClosedEnum; export type CreateFolderRequestBody = { /** * The name of the folder. */ name: string; /** * The description of the folder. */ description?: string | null | undefined; /** * The access level of the folder within the workspace. */ accessLevel?: AccessLevel | null | undefined; }; /** @internal */ export declare const AccessLevel$outboundSchema: z.ZodNativeEnum; /** @internal */ export type CreateFolderRequestBody$Outbound = { name: string; description?: string | null | undefined; accessLevel: string | null; }; /** @internal */ export declare const CreateFolderRequestBody$outboundSchema: z.ZodType; export declare function createFolderRequestBodyToJSON(createFolderRequestBody: CreateFolderRequestBody): string; //# sourceMappingURL=createfolder.d.ts.map