import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AddressError = { addressLine1?: string | undefined; addressLine2?: string | undefined; city?: string | undefined; stateOrProvince?: string | undefined; postalCode?: string | undefined; country?: string | undefined; }; /** @internal */ export declare const AddressError$inboundSchema: z.ZodType; /** @internal */ export type AddressError$Outbound = { addressLine1?: string | undefined; addressLine2?: string | undefined; city?: string | undefined; stateOrProvince?: string | undefined; postalCode?: string | undefined; country?: string | undefined; }; /** @internal */ export declare const AddressError$outboundSchema: z.ZodType; export declare function addressErrorToJSON(addressError: AddressError): string; export declare function addressErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=addresserror.d.ts.map