import { type Message } from '../../molecules/MessageList/MessageList.svelte'; interface ChatWindowProps { title?: string; messages?: Message[]; typingNames?: string[]; placeholder?: string; class?: string; onsend?: (text: string) => void; } declare const ChatWindow: import("svelte").Component; type ChatWindow = ReturnType; export default ChatWindow;