import type { ChatMessageData, ChatTabState } from '../../types.js'; export interface Props { /** Tab state */ tab: ChatTabState; /** Messages in this chat */ messages: ChatMessageData[]; /** Current user's profile ID */ currentProfileId: string; /** Send a message */ onsend: (content: string) => void; /** Collapse this tab */ oncollapse: () => void; /** Close this tab */ onclose: () => void; /** Expand this tab */ onexpand: () => void; } declare const ChatTab: import("svelte").Component; type ChatTab = ReturnType; export default ChatTab; //# sourceMappingURL=ChatTab.svelte.d.ts.map