type __VLS_Props = { value: unknown; /** Initial key for this node; empty string when rendering the root. */ keyName?: string; /** When true, the node is at the root of the tree. */ isRoot?: boolean; /** Dot-separated path from the root. Auto-derived when nested. */ path?: string; /** Current depth in the tree (root = 0). */ depth?: number; /** Current filter query (case-insensitive substring). */ query?: string; /** Pre-computed set of collapsed paths (so the parent's state survives * across re-renders when a different subtree is expanded). */ collapsedPaths?: Set; }; declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, { path: string; keyName: string; isRoot: boolean; depth: number; query: string; collapsedPaths: Set; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; export default _default;