import React from 'react'; export interface PdfViewerProps { src: string; fileName?: string; onPreview?: () => void; onDownload?: () => void; height?: string; } export declare function PdfViewer({ src, fileName, onPreview, onDownload, height }: PdfViewerProps): React.JSX.Element; //# sourceMappingURL=pdf-viewer.d.ts.map