import type { ChatMessageData } from '../../types.js'; export interface Props { /** Messages to display */ messages: ChatMessageData[]; /** Current user's profile ID */ currentProfileId: string; /** Send a message */ onsend: (content: string) => void; /** Maximum height for the message area in px */ maxHeight?: number; } declare const MiniChat: import("svelte").Component; type MiniChat = ReturnType; export default MiniChat; //# sourceMappingURL=MiniChat.svelte.d.ts.map