import * as React from 'react'; import { ChatUsersProps } from '../../core/useChatProps'; type Props = { text: string; inProgress: boolean; processAssistantText?: (text: string) => string; customMarkdownComponents?: ChatUsersProps['customMarkdownComponents']; typingSpeed?: number; }; declare const MessageMarkdown: React.FC; export default MessageMarkdown;