type MarkdownTextSize = '200' | '100' | '50'; declare const MessageMarkdown: ({ children, className, allowHtml, textSize, }: { children: string; className?: string; allowHtml?: boolean; textSize?: MarkdownTextSize; }) => import("react/jsx-runtime").JSX.Element; export { MessageMarkdown };