export interface MarkdownUIProps { content: string; } /** * Pure presentational component for the Markdown widget. Delegates the * `react-markdown` engine to {@link MarkdownContent} and supplies a * document-style MUI element mapping (body2 paragraphs, real heading * typography). Opts INTO raw HTML and inline images — the Markdown widget is * the one slot in the library where authors can ship rich content. Caption * slots like `Note` keep the conservative defaults. */ export declare function MarkdownUI({ content }: MarkdownUIProps): import("react/jsx-runtime").JSX.Element;