import { ChatAgentMessageMarkdownProps } from '../types'; /** * Agent reply bubble that renders its (string) children as GitHub-Flavored * Markdown through the library's sanitized renderer — raw HTML is skipped and * images are stripped, since the content is model output; tables / task lists / * strikethrough pick up the bubble's element styling. Composition over * `ChatAgentMessage`, which stays a plain styles container. */ export declare function ChatAgentMessageMarkdown({ children, ...props }: ChatAgentMessageMarkdownProps): import("react/jsx-runtime").JSX.Element; export declare namespace ChatAgentMessageMarkdown { var displayName: string; }