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