import * as t from 'io-ts';
import { IExtension } from './RTTI_Extension';
import { IElement } from './RTTI_Element';
export interface IAttachment {
    id?: string;
    extension?: IExtension[];
    contentType?: string;
    _contentType?: IElement;
    language?: string;
    _language?: IElement;
    data?: string;
    _data?: IElement;
    url?: string;
    _url?: IElement;
    size?: number;
    _size?: IElement;
    hash?: string;
    _hash?: IElement;
    title?: string;
    _title?: IElement;
    creation?: string;
    _creation?: IElement;
}
export declare const RTTI_Attachment: t.Type<IAttachment>;
