import type { PlaygroundMessage } from '../../types/playground.js'; interface Props { message: PlaygroundMessage; showTimestamp?: boolean; isLast?: boolean; enableMarkdown?: boolean; } declare const ChatBubble: import("svelte").Component; type ChatBubble = ReturnType; export default ChatBubble;