/// interface Props { src: string; onLoad: (value: boolean) => void; onError: (e: any) => void; } export default function TextViewer({ src, onLoad, onError }: Props): JSX.Element; export {};