import React from 'react'; import { ComponentColor, IComponentBaseProps } from '../types'; export type ChatBubbleMessageProps = React.HTMLAttributes & IComponentBaseProps & { color?: ComponentColor; }; declare const ChatBubbleMessage: React.ForwardRefExoticComponent & IComponentBaseProps & { color?: "neutral" | "primary" | "secondary" | "accent" | "ghost" | "info" | "success" | "warning" | "error" | undefined; } & React.RefAttributes>; export default ChatBubbleMessage;