import * as t from 'io-ts';
import { IExtension } from './RTTI_Extension';
import { IElement } from './RTTI_Element';
export interface IMoney {
    id?: string;
    extension?: IExtension[];
    value?: number;
    _value?: IElement;
    currency?: string;
    _currency?: IElement;
}
export declare const RTTI_Money: t.Type<IMoney>;
