import { CSSProperties, FC } from 'react';
export interface DocumentViewerProps {
url: string;
fileName?: string;
className?: string;
style?: CSSProperties;
showToolbar?: boolean;
page?: number;
}
declare const DocumentViewer: FC<DocumentViewerProps>;
export default DocumentViewer;