/// <reference types="react" />
interface Props {
    src: string;
    onLoad: (value: boolean) => void;
    onError: (e: any) => void;
}
export default function HTMLViewer({ src, onLoad, onError }: Props): JSX.Element;
export {};
