import * as t from 'io-ts';
import { IMeta } from './RTTI_Meta';
import { IElement } from './RTTI_Element';
import { IReference } from './RTTI_Reference';
import { IDomainResource } from './IDomainResource';
export interface IBinary extends IDomainResource {
    resourceType: 'Binary';
    id?: string;
    meta?: IMeta;
    implicitRules?: string;
    _implicitRules?: IElement;
    language?: string;
    _language?: IElement;
    contentType?: string;
    _contentType?: IElement;
    securityContext?: IReference;
    data?: string;
    _data?: IElement;
}
export declare const RTTI_Binary: t.Type<IBinary>;
