import { FC } from 'react'; interface PDFViewerProps { fileUrl: string; pageNumber?: number; } declare const PDFViewer: FC; export default PDFViewer;