import * as z from "zod/v4-mini"; import { MemberRole } from "./memberrole.js"; /** * Schema for updating a member's role in the customer portal. */ export type CustomerPortalMemberUpdate = { /** * The new role for the member. */ role?: MemberRole | null | undefined; }; /** @internal */ export type CustomerPortalMemberUpdate$Outbound = { role?: string | null | undefined; }; /** @internal */ export declare const CustomerPortalMemberUpdate$outboundSchema: z.ZodMiniType; export declare function customerPortalMemberUpdateToJSON(customerPortalMemberUpdate: CustomerPortalMemberUpdate): string; //# sourceMappingURL=customerportalmemberupdate.d.ts.map