import type { ChatMessageData, ChatThreadData } from '../../types.js'; export interface Props { /** Thread metadata */ thread: ChatThreadData; /** Messages in the thread */ messages: ChatMessageData[]; /** Current user's profile ID */ currentProfileId: string; /** Send a reply to the thread */ onsend: (content: string) => void; /** Close the thread panel */ onclose: () => void; } declare const ThreadPanel: import("svelte").Component; type ThreadPanel = ReturnType; export default ThreadPanel; //# sourceMappingURL=ThreadPanel.svelte.d.ts.map