/// <reference types="react" />
import { MessageBubbleProps } from '../../types';
/**
 * MessageBubble component displays a message bubble with a timestamp and status.
 *
 * @component
 * @param {MessageBubbleProps} props - The props for the component.
 * @param {React.ReactNode} props.children - The content of the message bubble.
 * @param {string} [props.timestamp] - The timestamp of the message.
 * @param {string} [props.status] - The status of the message, can ber "read", "delivered", "sent".
 * @returns {JSX.Element} The rendered message bubble component.
 */
declare const MessageBubble: React.FC<MessageBubbleProps>;
export default MessageBubble;
