/// export declare type TreeContextType = { /** * indicates all collapsing nodes across the tree should open / close */ isCollapsed?: boolean; /** * open / close all collapsing nodes in the tree */ setIsCollapsed?: (x?: boolean) => void; /** * active path - indicates the path to the currently active node */ activePath?: string; /** * changes the currently active path */ setActivePath?: (x?: string) => void; }; export declare const TreeContext: import("react").Context;