export interface TreeNode { id: string; label: string; children?: TreeNode[]; disabled?: boolean; } type TreeViewProps = { nodes: TreeNode[]; /** Id du nœud sélectionné (bindable). */ selected?: string; /** Ids dépliés au départ. */ defaultExpanded?: string[]; label?: string; class?: string; onselect?: (id: string) => void; }; declare const TreeView: import("svelte").Component; type TreeView = ReturnType; export default TreeView; //# sourceMappingURL=TreeView.svelte.d.ts.map