import type { ChatTabState } from '../../types.js'; export interface Props { /** Collapsed/minimized tabs */ tabs: ChatTabState[]; /** Select (expand) a tab */ onselect: (roomId: string) => void; /** Close a tab */ onclose: (roomId: string) => void; } declare const ChatTabList: import("svelte").Component; type ChatTabList = ReturnType; export default ChatTabList; //# sourceMappingURL=ChatTabList.svelte.d.ts.map