export declare class Address { addressType?: AddressAddressTypeEnum; /** * 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(address: AddressProperties); } export type AddressAddressTypeEnum = 'HOME' | 'WORK'; export interface AddressProperties { addressType?: AddressAddressTypeEnum; addressLine1?: string; addressLine2?: string; city?: string; state?: string; zipCode?: string; countryCode?: string; }