export type MessageStatus = 'sent' | 'delivered' | 'read'; export type MessageSide = 'left' | 'right'; interface ChatBubbleProps { content: string; side?: MessageSide; author?: string; time?: string; avatar?: string; status?: MessageStatus; class?: string; } declare const ChatBubble: import("svelte").Component; type ChatBubble = ReturnType; export default ChatBubble;