import { z } from "zod"; //#region src/cli/commands/workspace/user/remove.d.ts declare const removeUserOptionsSchema: z.ZodObject<{ workspaceId: z.ZodOptional; profile: z.ZodOptional; email: z.ZodEmail; }, z.core.$strip>; export type RemoveUserOptions = z.input; /** * Remove a user from a workspace. * @param options - User remove options * @returns Promise that resolves when removal completes */ export declare function removeUser(options: RemoveUserOptions): Promise; //#endregion