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