import { ReactNode } from 'react'; interface IChatBubbleProps { readonly userName: string; readonly userImage: string; readonly date: ReactNode; readonly text: ReactNode; readonly background: string; readonly direction: 'left' | 'right'; } declare const ChatBubble: ({ userName, userImage, date, background, direction, text, }: IChatBubbleProps) => JSX.Element; export default ChatBubble;