import * as React from 'react'; /** * Renders a markdown string to React elements via `markdown-to-jsx`. Output stays * XSS-safe by construction (React elements, no `dangerouslySetInnerHTML`); only * link/image URLs are guarded, by {@link sanitizer}. */ export declare function renderMarkdown(text: string): React.ReactNode; /** * Default `renderText` for the `text` part. Stable module-level identity so it does * not churn the headless `TextPart` `useMemo`. */ export declare const renderStreamingMarkdown: (text: string) => React.ReactNode;