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