import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PhoneNumberError = { number?: string | undefined; countryCode?: string | undefined; }; /** @internal */ export declare const PhoneNumberError$inboundSchema: z.ZodType; /** @internal */ export type PhoneNumberError$Outbound = { number?: string | undefined; countryCode?: string | undefined; }; /** @internal */ export declare const PhoneNumberError$outboundSchema: z.ZodType; export declare function phoneNumberErrorToJSON(phoneNumberError: PhoneNumberError): string; export declare function phoneNumberErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=phonenumbererror.d.ts.map