import type { TreeNode } from '../TreeView/TreeView.svelte'; interface TreeSelectProps { id?: string; items?: TreeNode[]; value?: string; label?: string; placeholder?: string; disabled?: boolean; class?: string; onchange?: (value: string, node: TreeNode) => void; } declare const TreeSelect: import("svelte").Component; type TreeSelect = ReturnType; export default TreeSelect;