import React from 'react';
import { type ChatListT } from '../../types';
interface BotMessageProps {
    message: ChatListT;
    classPrefix?: string;
}
declare const BotMessage: React.FC<BotMessageProps>;
export default BotMessage;
