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