export interface TreeNode { id: string; label: string; children?: TreeNode[]; disabled?: boolean; icon?: string; } interface TreeViewProps { items?: TreeNode[]; expanded?: string[]; selected?: string; multiExpand?: boolean; class?: string; onselect?: (id: string, node: TreeNode) => void; } declare const TreeView: import("svelte").Component; type TreeView = ReturnType; export default TreeView;