import React from 'react'; import './MdTheme.css'; export type MdRendererProps = { /** * The markdown content to render */ content: string; unsafe?: boolean; extra?: Record; }; /** * A React component that renders markdown content as HTML */ export declare const MdRendererBase: { ({ content, unsafe, extra, }: MdRendererProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export declare const MdRenderer: React.MemoExoticComponent<{ ({ content, unsafe, extra, }: MdRendererProps): import("react/jsx-runtime").JSX.Element; displayName: string; }>;