import { z } from "zod"; //#region src/cli/commands/workspace/user/update.d.ts declare const updateUserOptionsSchema: z.ZodObject<{ workspaceId: z.ZodOptional; profile: z.ZodOptional; email: z.ZodEmail; role: z.ZodEnum<{ admin: "admin"; editor: "editor"; viewer: "viewer"; }>; }, z.core.$strip>; export type UpdateUserOptions = z.input; /** * Update a user's role in a workspace. * @param options - User update options * @returns Promise that resolves when update completes */ export declare function updateUser(options: UpdateUserOptions): Promise; //#endregion