/** * Markdown as chat renders it. * * Identical to `Markdown`, plus a development warning when a chat surface falls * back to plain source. Chat is the one place where the plain-source default is * almost always unintended, so the signal lives here rather than in * `veryfront/markdown`, where plain source is a supported contract. * * @module react/components/chat/chat-markdown */ import * as React from "react"; import type { MarkdownProps } from "./markdown.js"; /** Render Markdown on a chat surface. */ export declare function ChatMarkdown({ renderer, ...props }: MarkdownProps): React.ReactElement; export declare namespace ChatMarkdown { var displayName: string; } //# sourceMappingURL=chat-markdown.d.ts.map