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<HtmlIngredientProps<'div', HTMLDivElement, NodeState>, NodeProps> {
}
declare const TreeViewBranch: import("svelte").Component<TreeViewBranchProps, {}, "ref">;
type TreeViewBranch = ReturnType<typeof TreeViewBranch>;
export default TreeViewBranch;
