import { type PlaygroundMessage } from '../../types/playground.js'; interface Props { message: PlaygroundMessage; showTimestamp?: boolean; isLast?: boolean; enableMarkdown?: boolean; /** * Use compact display mode for system messages. * When true (default), system messages without an explicit `display` * default to the 'notice' layout instead of 'bubble'. */ compactSystemMessages?: boolean; } declare const MessageBubble: import("svelte").Component; type MessageBubble = ReturnType; export default MessageBubble;