Package:
@hexos/react-uiProps for the MessageBubble component.
interface MessageBubbleProps {
message: AgentMessage;
showAvatar?: boolean;
showTimestamp?: boolean;
showAgentName?: boolean;
showToolCalls?: boolean;
showReasoning?: boolean;
isStreaming?: boolean;
toolRenderers?: Record<string, React.ComponentType<ToolCallRenderProps>>;
actions?: React.ReactNode;
className?: string;
}