UNPKG

@chatui/core

Version:

The React library for Chatbot UI

7 lines (6 loc) 259 B
import React from 'react'; export interface BubbleProps extends React.HTMLAttributes<HTMLDivElement> { type?: string; content?: string; } export declare const Bubble: React.ForwardRefExoticComponent<BubbleProps & React.RefAttributes<HTMLDivElement>>;