import { ReactEventHandler } from 'react';
interface Props {
    src: string;
    onError: ReactEventHandler<HTMLImageElement>;
    onLoad: (value: boolean) => void;
}
export default function ImageViewer({ src, onError, onLoad }: Props): JSX.Element;
export {};
