import { IBackboneElement, IElement } from '../base';
import { IAddress, ICodeableConcept, IContactPoint, IHumanName, IPeriod, IReference } from '../datatypes';
import { AdministrativeGenderType } from '../types';
export interface IPatientContact extends IBackboneElement {
    relationship?: ICodeableConcept[];
    name?: IHumanName;
    telecom?: IContactPoint[];
    address?: IAddress;
    gender?: AdministrativeGenderType;
    organization?: IReference;
    period?: IPeriod;
    _gender?: IElement;
}
