import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The access level of the folder within the workspace. */ export declare const UpdateFolderAccessLevel: { readonly Write: "write"; readonly Read: "read"; }; /** * The access level of the folder within the workspace. */ export type UpdateFolderAccessLevel = ClosedEnum; export type UpdateFolderRequestBody = { /** * The name of the folder. */ name?: string | undefined; /** * The description of the folder. */ description?: string | null | undefined; /** * The access level of the folder within the workspace. */ accessLevel?: UpdateFolderAccessLevel | null | undefined; }; export type UpdateFolderRequest = { /** * The ID of the folder to update. */ id: string; requestBody?: UpdateFolderRequestBody | undefined; }; /** @internal */ export declare const UpdateFolderAccessLevel$outboundSchema: z.ZodNativeEnum; /** @internal */ export type UpdateFolderRequestBody$Outbound = { name?: string | undefined; description?: string | null | undefined; accessLevel: string | null; }; /** @internal */ export declare const UpdateFolderRequestBody$outboundSchema: z.ZodType; export declare function updateFolderRequestBodyToJSON(updateFolderRequestBody: UpdateFolderRequestBody): string; /** @internal */ export type UpdateFolderRequest$Outbound = { id: string; RequestBody?: UpdateFolderRequestBody$Outbound | undefined; }; /** @internal */ export declare const UpdateFolderRequest$outboundSchema: z.ZodType; export declare function updateFolderRequestToJSON(updateFolderRequest: UpdateFolderRequest): string; //# sourceMappingURL=updatefolder.d.ts.map