UNPKG

captide

Version:

Get hundreds of thousands of financial documents into your AI app 🚀

19 lines (18 loc) • 580 B
import React from 'react'; import { InternalDocument } from '../../types'; interface SpreadsheetViewerProps { sasUrl: string; className?: string; style?: React.CSSProperties; zoomLevel?: number; document?: InternalDocument; } /** * Spreadsheet Viewer Component * * Provides an interface for viewing Excel/CSV spreadsheet files using SheetJS. * Offers a viewer with download option as a fallback. * This component is browser-only to avoid SSR issues. */ declare const SpreadsheetViewer: React.FC<SpreadsheetViewerProps>; export default SpreadsheetViewer;