import type { MarkdownProps } from './markdown-types.js'; import type { Components } from '../../core/types/markdown/react-markdown.js'; /** * @public */ export declare const componentMappings: Components; /** * The `Markdown` component is a read-only way to display content formatted in * markdown-style. * @public */ export declare const Markdown: (props: MarkdownProps & import("react").RefAttributes) => import("react").ReactElement | null;