import { IElement } from '../base';
import { AddressTypeType, AddressUseType } from '../types';
import { IPeriod } from './IPeriod';
/**
 * @description FHIR R4
 */
export interface IAddress extends IElement {
    use?: AddressUseType;
    type?: AddressTypeType;
    text?: string;
    line?: string[];
    city?: string;
    district?: string;
    state?: string;
    postalCode?: string;
    country?: string;
    period?: IPeriod;
    _use?: IElement;
    _type?: IElement;
    _text?: IElement;
    _line?: IElement[];
    _city?: IElement;
    _district?: IElement;
    _state?: IElement;
    _postalCode?: IElement;
    _country?: IElement;
}
