/** * Chat message bubble component * Renders individual messages with proper styling based on type */ import React from 'react'; import { ChatMessage, Theme } from '../../types'; export interface MessageBubbleProps { message: ChatMessage; theme?: Theme; isSelected?: boolean; onSelectionChange?: (messageId: string, selected: boolean) => void; } /** * Message bubble - renders a single chat message with appropriate styling */ export declare const MessageBubble: React.FC; //# sourceMappingURL=MessageBubble.d.ts.map