export declare class CustomerAccountAddress { addressType?: CustomerAccountAddressAddressTypeEnum; /** * Address line 1 of the address provided. */ addressLine1: string; /** * Address line 2 of the address provided. */ addressLine2?: string; /** * City of the address provided. */ city: string; /** * The two-characters ISO code for the state or province of the address. */ state: string; /** * Zip code of the address provided. */ zipCode: string; /** * ISO alpha-3 country code of the address provided. */ countryCode: string; constructor(customerAccountAddress: CustomerAccountAddressProperties); } export type CustomerAccountAddressAddressTypeEnum = 'HOME' | 'WORK'; export interface CustomerAccountAddressProperties { addressType?: CustomerAccountAddressAddressTypeEnum; addressLine1: string; addressLine2?: string; city: string; state: string; zipCode: string; countryCode: string; }