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