import React from 'react';
import { ContentType } from '@/_utils/chat';
interface ChatItemProps {
    layout: 'left' | 'right' | 'center';
    chatItem: any;
    contentType: ContentType;
}
declare const ChatItem: React.FC<ChatItemProps>;
export default ChatItem;
