import type { PersonContactInformation } from './person-contact-information.model'; import type { PersonName } from './person-name.model'; export interface Address extends Partial, PersonName { address1: string; address2?: string; city: string; countryCode: string; id: string; phone?: string; postalCode: string; postBox?: string; stateCode: string; suite?: string; title?: string; } export declare type Addresses = Address[];