/// export type ChatBubbleProps = { colorTheme?: 'grey' | 'brand_primary' | 'translucent_white' | 'translucent_black' | 'transparent'; tailType?: 'none' | 'left_top' | 'right_top'; children?: React.ReactNode; }; declare function ChatBubble({ colorTheme, tailType, children }: ChatBubbleProps): JSX.Element; export default ChatBubble;