import * as z from "zod/v4-mini"; /** * The role to assign to the member */ export declare enum UserIdRoleRole { Admin = "admin", Editor = "editor", Viewer = "viewer" } export type UserIdRole = { /** * The user ID to add as a member */ userId: string; /** * The role to assign to the member */ role?: UserIdRoleRole | undefined; }; /** @internal */ export declare const UserIdRoleRole$outboundSchema: z.ZodMiniEnum; /** @internal */ export type UserIdRole$Outbound = { userId: string; role: string; }; /** @internal */ export declare const UserIdRole$outboundSchema: z.ZodMiniType; export declare function userIdRoleToJSON(userIdRole: UserIdRole): string; //# sourceMappingURL=user-id-role.d.ts.map