import type { EliceHtmlViewerProps } from './HtmlViewerTypes';
/**
* Cross-platform HTML viewer with highlight & memo annotations.
*
* @security The `content` prop must be pre-sanitized by the caller before
* passing to this component. No internal HTML sanitization is performed.
*/
declare const EliceHtmlViewer: ({ content, documentId, defaultMode, annotations, onAnnotationCreate, onAnnotationUpdate, onAnnotationDelete, colors, sx, }: EliceHtmlViewerProps) => import("react/jsx-runtime").JSX.Element;
export default EliceHtmlViewer;