import { ReactNode, MouseEventHandler } from "react"; export interface ChatMessageBalloonProps { label: string; description: ReactNode; date: string; direction: "I" | "O"; onMouseEnter?: MouseEventHandler; onMouseLeave?: MouseEventHandler; onRowMouseEnter?: MouseEventHandler; onRowMouseLeave?: MouseEventHandler; highlight?: boolean; attachments?: string[]; children?: ReactNode; bottomChildren?: ReactNode; className?: string; }