import { AnnotatedTextVisualization } from '../../types'; interface AnnotatedTextRendererProps { data: AnnotatedTextVisualization; className?: string; } /** * Renders an AnnotatedText visualization with markdown links, * optional subtitle, and optional info-icon tooltip. */ export declare function AnnotatedTextRenderer({ data, className }: AnnotatedTextRendererProps): import("react/jsx-runtime").JSX.Element; export {};