import type { NodeProps, NodeState } from '@zag-js/tree-view'; import type { Merge } from 'type-fest'; import type { HtmlIngredientProps } from '../types.js'; export interface TreeViewBranchProps extends Merge, NodeProps> { } declare const TreeViewBranch: import("svelte").Component; type TreeViewBranch = ReturnType; export default TreeViewBranch;