interface MarkdownRendererProps { content: string; } /** * Render Markdown content using custom UI components and styling. * * Renders the provided Markdown string into a styled React element tree with support for fenced code blocks (syntax highlighting and copy), inline code, tables, task list checkboxes, blockquotes, images, links, headings, lists, and other common Markdown elements. * * @param content - The Markdown source to render * @returns The rendered React element tree representing the parsed Markdown content */ export declare function MarkdownRenderer({ content }: MarkdownRendererProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=MarkdownRenderer.d.ts.map