import * as z from "zod/v3"; export type UpdateWorkspaceBody = { /** * The updated name of the workspace */ name: string | null; }; /** @internal */ export type UpdateWorkspaceBody$Outbound = { name: string | null; }; /** @internal */ export declare const UpdateWorkspaceBody$outboundSchema: z.ZodType; export declare function updateWorkspaceBodyToJSON(updateWorkspaceBody: UpdateWorkspaceBody): string; //# sourceMappingURL=updateworkspacebody.d.ts.map