import React from 'react'; interface NewDocumentViewerProps { open: boolean; fileUrl: string; /** * Determines the type in which the file will be displayed. Supported extensions: `csv`, `txt`, `json`, `pdf`, `xlsx` */ fileName: string; fileSize?: number; onClose: () => void; 'data-testid'?: string; classes?: any; webviewType?: string; } declare const NewDocumentViewer: React.FC; export default NewDocumentViewer; //# sourceMappingURL=NewDocumentViewer.d.ts.map