import { Bubble as BubbleItem } from './Item'; import { BubbleList } from './List'; type BubbleType = typeof BubbleItem & { List: typeof BubbleList; }; declare const Bubble: BubbleType; export { Bubble }; export type { Role, Message, BubbleListProps, BubbleListPropsItem, BubbleProps } from './types'; export { RoleEnum } from './types'; export default Bubble;