UNPKG

captide

Version:

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

21 lines (20 loc) • 615 B
import React from 'react'; interface HTMLViewerProps { document: any; highlightedElementId: string | null; zoomLevel: number; className?: string; style?: React.CSSProperties; enableShareableLinks?: boolean; shareableLinkBaseUrl?: string; shareableLinkButtonColor?: string; viewerRoutePath?: string; } /** * HTMLViewer Component * * Renders an iframe containing HTML document content (SEC filings, 8-K documents, or earnings call transcripts) * and handles highlighting of specific elements. */ declare const HTMLViewer: React.FC<HTMLViewerProps>; export default HTMLViewer;