import * as t from 'io-ts';
import { IExtension } from './RTTI_Extension';
import { IQuantity } from './RTTI_Quantity';
export interface IRange {
    id?: string;
    extension?: IExtension[];
    low?: IQuantity;
    high?: IQuantity;
}
export declare const RTTI_Range: t.Type<IRange>;
