export default HTMLViewer;
declare class HTMLViewer extends React.Component {
constructor(props: any);
state: {
content: any;
};
handleClick(e: any): void;
htmlViewer: React.RefObject;
setContent(content: any): void;
UNSAFE_componentWillReceiveProps(nextProps: any): void;
componentDidMount(): void;
render(): import("react/jsx-runtime").JSX.Element;
}
declare namespace HTMLViewer {
namespace propTypes {
const content: any;
const style: any;
const handleClick: any;
}
}
import React from "react";