import type { NodeProps } from '@zag-js/tree-view'; import type { Snippet } from 'svelte'; export interface TreeViewNodeContextProps { children: Snippet<[() => NodeProps]>; } declare const NodeContext: import("svelte").Component; type NodeContext = ReturnType; export default NodeContext;