import { MarkdownComponentProps } from './types'; /** * Presentational component that renders a Markdown string as MUI-styled HTML using react-markdown. * * @remarks * Maps Markdown elements (headings, paragraphs, links, lists) to MUI Typography and Link components. * Custom component overrides can be passed via the `overrides` prop. */ export declare function MarkdownUI({ children, overrides }: MarkdownComponentProps): import("react/jsx-runtime").JSX.Element;