import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; import { IdNameEmail } from "./id-name-email.js"; export type IdUserIdRole2 = { /** * Membership ID */ id: string; /** * User ID */ userId: string; /** * Member role (admin, editor, viewer) */ role: string; user: IdNameEmail; /** * ISO timestamp of when member was added */ createdAt: string; /** * ISO timestamp of last update */ updatedAt: string; }; /** @internal */ export declare const IdUserIdRole2$inboundSchema: z.ZodMiniType; export declare function idUserIdRole2FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=id-user-id-role2.d.ts.map