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