import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Contact = { email?: string | undefined; handle?: string | undefined; name?: string | undefined; }; /** @internal */ export declare const Contact$inboundSchema: z.ZodType; export declare function contactFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=contact.d.ts.map