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 IdNameEmail = { id: string; name: string | null; email: string; image: string | null; }; /** @internal */ export declare const IdNameEmail$inboundSchema: z.ZodMiniType; export declare function idNameEmailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=id-name-email.d.ts.map