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