import { ReactNode, MouseEventHandler } from "react"; export interface NormaChatMessageBalloonProps { avatar?: { src: string; alt: string; } 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; }