import { IElement } from '../base';
import { ICoding } from './ICoding';
export interface IMeta extends IElement {
    versionId?: string | number;
    lastUpdated?: string;
    source?: string;
    profile?: string[];
    security?: ICoding[];
    tag?: ICoding[];
    _versionId?: IElement;
    _lastUpdated?: IElement;
    _source?: IElement;
    _profile?: IElement[];
}
