export default HTMLViewer;
declare class HTMLViewer extends React.Component<any, any, any> {
    constructor(props: any);
    state: {
        content: any;
    };
    handleClick(e: any): void;
    htmlViewer: React.RefObject<any>;
    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";
