import React from "react"; interface DocumentProps { documentId?: string; documentAPI: string; documentName: string; actualPath?: string; downloadPdfFile?: boolean; } declare const PdfViewer: React.FC; export default PdfViewer;