import * as t from 'io-ts';
import { IMeta } from './RTTI_Meta';
import { IElement } from './RTTI_Element';
import { INarrative } from './RTTI_Narrative';
import { IResourceList } from '../Union/RTTI_ResourceList';
import { IExtension } from './RTTI_Extension';
import { IIdentifier } from './RTTI_Identifier';
import { ICodeableConcept } from './RTTI_CodeableConcept';
import { IReference } from './RTTI_Reference';
import { IRatio } from './RTTI_Ratio';
import { IMedication_Ingredient } from './RTTI_Medication_Ingredient';
import { IMedication_Batch } from './RTTI_Medication_Batch';
import { IDomainResource } from './IDomainResource';
export interface IMedication extends IDomainResource {
    resourceType: 'Medication';
    id?: string;
    meta?: IMeta;
    implicitRules?: string;
    _implicitRules?: IElement;
    language?: string;
    _language?: IElement;
    text?: INarrative;
    contained?: IResourceList[];
    extension?: IExtension[];
    modifierExtension?: IExtension[];
    identifier?: IIdentifier[];
    code?: ICodeableConcept;
    status?: string;
    _status?: IElement;
    manufacturer?: IReference;
    form?: ICodeableConcept;
    amount?: IRatio;
    ingredient?: IMedication_Ingredient[];
    batch?: IMedication_Batch;
}
export declare const RTTI_Medication: t.Type<IMedication>;
