import { type MessageSide, type MessageStatus } from '../ChatBubble/ChatBubble.svelte'; export interface Message { id: string; content: string; side: MessageSide; author?: string; time?: string; avatar?: string; status?: MessageStatus; } interface MessageListProps { messages?: Message[]; maxHeight?: number | string; class?: string; } declare const MessageList: import("svelte").Component; type MessageList = ReturnType; export default MessageList;