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