import {ComponentClass} from 'react' export interface TaroParserProps { content/*;内容*/: string, type/*;类型*/: 'markdown'/*;码档*/ | 'html'/*;超文本*/, onImgClick/*;当点击图片*/?: Function onLinkClick/*;当点击链接*/?: Function, onCopyLink/*;当复制链接*/?: Function, latexApi/*;排版接口*/?: string, yumlApi/*;建模接口*/?: string, theme/*;主题*/?: 'dark'/*;暗*/ | 'light'/*;亮*/ } declare const TaroParser: ComponentClass export default TaroParser