import React from 'react'; interface LexicalArticleViewerProps { html: string; isHighlightMode?: boolean; /** Reading zoom multiplier applied to the article font size (1 = 100%). */ fontScale?: number; } /** * Renders extracted article HTML as sanitized, styled prose. * * Sanitization runs only in the browser: `dompurify` requires a real DOM, and * the isomorphic build pulls in `jsdom`, which cannot be bundled for the * Cloudflare Workers runtime. SSR renders an empty container; the sanitized * markup is injected after mount. */ declare const LexicalArticleViewer: React.FC; export default LexicalArticleViewer;