import type { TreeNode } from '../../types-generic'; export interface Props { /** Root nodes. */ nodes: TreeNode[]; /** Selected node id. */ selectedId?: string; /** Initially expanded node ids. */ expanded?: string[]; /** Fired with the selected node id. */ onselect?: (id: string) => void; /** Accessible label for the tree. */ 'aria-label'?: string; } declare const Tree: import("svelte").Component; type Tree = ReturnType; export default Tree; //# sourceMappingURL=Tree.svelte.d.ts.map