import { Component } from 'react'; import { Props, State } from "types/Parser"; export default class TaroParser extends Component { static options: { addGlobalClass: boolean; }; constructor(props: any); convert(props: any): Promise; imgClick: (src: any, imgList: any) => void; linkClick: (href: any) => void; findAllImgUrl(node: any, imgList: any): void; componentWillReceiveProps(nextProps: any): void; render(): import("react/jsx-runtime").JSX.Element; }