import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DigitalWalletAddress = { /** * The first line of the address. */ line1: string; /** * The second line of the address. */ line2?: string | null | undefined; /** * The city for the address. */ city: string; /** * The code of state, county, or province for the address in ISO 3166-2 format. */ stateCode: string; /** * The zip or postal code for the address. */ postalCode: string; }; /** @internal */ export declare const DigitalWalletAddress$inboundSchema: z.ZodType; /** @internal */ export type DigitalWalletAddress$Outbound = { line1: string; line2?: string | null | undefined; city: string; state_code: string; postal_code: string; }; /** @internal */ export declare const DigitalWalletAddress$outboundSchema: z.ZodType; export declare function digitalWalletAddressToJSON(digitalWalletAddress: DigitalWalletAddress): string; export declare function digitalWalletAddressFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=digitalwalletaddress.d.ts.map