import { CountryEnum } from '../../../nichandle/CountryEnum';
import { PhoneNumber } from '../../../PhoneNumber';
/** Address for a claim notice holder */
export interface Address {
    /** City */
    city?: string;
    /** Country code */
    countryCode?: CountryEnum;
    /** Fax number */
    fax?: PhoneNumber;
    /** Fax number extension */
    faxExtension?: string;
    /** Postal zip code */
    postalCode?: string;
    /** State of province */
    stateOrProvince?: string;
    /** Array of street name */
    streets: string[];
    /** Phone number */
    voice?: PhoneNumber;
    /** Phone number extension */
    voiceExtension?: string;
}
//# sourceMappingURL=Address.d.ts.map