import { InjectionToken } from '@angular/core'; import { type TuiTreeAccessor, type TuiTreeLoader } from './tree.interfaces'; /** * Controller for tracking value - TuiTreeItemComponent pairs */ export declare const TUI_TREE_ACCESSOR: InjectionToken>; /** * Controller for expanding the tree */ export declare const TUI_TREE_CONTROLLER: InjectionToken; /** * A node of a tree view */ export declare const TUI_TREE_NODE: InjectionToken; /** * A tree node placeholder for loading */ export declare const TUI_TREE_LOADING: InjectionToken<{}>; /** * A tree node starting point */ export declare const TUI_TREE_START: InjectionToken; /** * A service to load tree progressively */ export declare const TUI_TREE_LOADER: InjectionToken>; /** * Nesting level of current TreeView node */ export declare const TUI_TREE_LEVEL: InjectionToken;