import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type UpdateWorkspaceUserResponse = {
    /**
     * The ID of the role assigned to the user
     */
    roleId?: string | undefined;
};
/** @internal */
export declare const UpdateWorkspaceUserResponse$inboundSchema: z.ZodType<UpdateWorkspaceUserResponse, z.ZodTypeDef, unknown>;
export declare function updateWorkspaceUserResponseFromJSON(jsonString: string): SafeParseResult<UpdateWorkspaceUserResponse, SDKValidationError>;
//# sourceMappingURL=updateworkspaceuserresponse.d.ts.map