/// /** * Created by rburson on 1/15/16. */ import * as React from 'react'; import { CvProps } from 'catreact'; export interface CvHtmlResourceProps extends CvProps { className?: string; style?: {}; type?: string; fallbackImageUrl?: string; resourceName?: string; resourceUrl?: string; } export declare var CvHtmlResource: React.ClassicComponentClass;