devextreme-angular
Version:
Angular UI and visualization components based on DevExtreme widgets
722 lines (537 loc) • 30.4 kB
TypeScript
/*!
* devextreme-angular
* Version: 25.2.3
* Build date: Fri Dec 12 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file in the root of the project for details.
*
* https://github.com/DevExpress/devextreme-angular
*/
import { TransferState, ElementRef, NgZone, OnDestroy, EventEmitter, OnChanges, DoCheck, SimpleChanges, QueryList } from '@angular/core';
import DataSource from 'devextreme/data/data_source';
import { dxTreeViewNode, dxTreeViewItem, TreeViewExpandEvent, ContentReadyEvent, DisposingEvent, InitializedEvent, ItemClickEvent, ItemCollapsedEvent, ItemContextMenuEvent, ItemExpandedEvent, ItemHoldEvent, ItemRenderedEvent, ItemSelectionChangedEvent, OptionChangedEvent, SelectAllValueChangedEvent, SelectionChangedEvent, TreeViewCheckBoxMode } from 'devextreme/ui/tree_view';
import { DataSourceOptions } from 'devextreme/data/data_source';
import { Store } from 'devextreme/data/store';
import { DataStructure, ScrollDirection, SearchMode, SingleOrMultiple } from 'devextreme/common';
import { dxTextBoxOptions } from 'devextreme/ui/text_box';
import DxTreeView from 'devextreme/ui/tree_view';
import { DxComponent, DxTemplateHost, NestedOptionHost, IterableDifferHelper, WatcherHelper, CollectionNestedOption } from 'devextreme-angular/core';
import type * as DxTreeViewTypes from "devextreme/ui/tree_view_types";
import * as i0 from "@angular/core";
import * as i1 from "devextreme-angular/ui/nested";
import * as i2 from "devextreme-angular/ui/tree-view/nested";
import * as i3 from "devextreme-angular/core";
export { ExplicitTypes } from 'devextreme/ui/tree_view';
/**
* The TreeView UI component is a tree-like representation of textual data.
*/
export declare class DxTreeViewComponent<TItem = any, TKey = any> extends DxComponent implements OnDestroy, OnChanges, DoCheck {
private _watcherHelper;
private _idh;
set _buttonsContentChildren(value: QueryList<CollectionNestedOption>);
set _itemsContentChildren(value: QueryList<CollectionNestedOption>);
instance: DxTreeView<TItem, TKey>;
/**
* Specifies the shortcut key that sets focus on the UI component.
*/
get accessKey(): string | undefined;
set accessKey(value: string | undefined);
/**
* Specifies whether the UI component changes its visual state as a result of user interaction.
*/
get activeStateEnabled(): boolean;
set activeStateEnabled(value: boolean);
/**
* Specifies whether or not to animate item collapsing and expanding.
*/
get animationEnabled(): boolean;
set animationEnabled(value: boolean);
/**
* Specifies a custom collapse icon.
*/
get collapseIcon(): null | string;
set collapseIcon(value: null | string);
/**
* Allows you to load nodes on demand.
*/
get createChildren(): ((parentNode: dxTreeViewNode) => any | Array<Record<string, any>>);
set createChildren(value: ((parentNode: dxTreeViewNode) => any | Array<Record<string, any>>));
/**
* Binds the UI component to data.
*/
get dataSource(): Array<dxTreeViewItem> | DataSource | DataSourceOptions | null | Store | string;
set dataSource(value: Array<dxTreeViewItem> | DataSource | DataSourceOptions | null | Store | string);
/**
* Notifies the UI component of the data structure in use.
*/
get dataStructure(): DataStructure;
set dataStructure(value: DataStructure);
/**
* Specifies whether the UI component responds to user interaction.
*/
get disabled(): boolean;
set disabled(value: boolean);
/**
* Specifies the name of the data source item field whose value defines whether or not the corresponding UI component item is disabled.
*/
get disabledExpr(): Function | string;
set disabledExpr(value: Function | string);
/**
* Specifies the data field whose values should be displayed.
*/
get displayExpr(): ((item: any) => string) | string;
set displayExpr(value: ((item: any) => string) | string);
/**
* Specifies the global attributes to be attached to the UI component's container element.
*/
get elementAttr(): Record<string, any>;
set elementAttr(value: Record<string, any>);
/**
* Specifies whether or not a user can expand all tree view items by the '*' hot key.
*/
get expandAllEnabled(): boolean;
set expandAllEnabled(value: boolean);
/**
* Specifies which data source field specifies whether an item is expanded.
*/
get expandedExpr(): Function | string;
set expandedExpr(value: Function | string);
/**
* Specifies the event on which to expand/collapse a node.
*/
get expandEvent(): TreeViewExpandEvent;
set expandEvent(value: TreeViewExpandEvent);
/**
* Specifies a custom expand icon.
*/
get expandIcon(): null | string;
set expandIcon(value: null | string);
/**
* Specifies whether or not all parent nodes of an initially expanded node are displayed expanded.
*/
get expandNodesRecursive(): boolean;
set expandNodesRecursive(value: boolean);
/**
* Specifies whether the UI component can be focused using keyboard navigation.
*/
get focusStateEnabled(): boolean;
set focusStateEnabled(value: boolean);
/**
* Specifies the name of the data source item field whose value defines whether or not the corresponding node includes child nodes.
*/
get hasItemsExpr(): Function | string;
set hasItemsExpr(value: Function | string);
/**
* Specifies the UI component's height.
*/
get height(): number | string | undefined;
set height(value: number | string | undefined);
/**
* Specifies text for a hint that appears when a user pauses on the UI component.
*/
get hint(): string | undefined;
set hint(value: string | undefined);
/**
* Specifies whether the UI component changes its state when a user pauses on it.
*/
get hoverStateEnabled(): boolean;
set hoverStateEnabled(value: boolean);
/**
* The time period in milliseconds before the onItemHold event is raised.
*/
get itemHoldTimeout(): number;
set itemHoldTimeout(value: number);
/**
* An array of items displayed by the UI component.
*/
get items(): Array<any | dxTreeViewItem>;
set items(value: Array<any | dxTreeViewItem>);
/**
* Specifies which data field contains nested items.
*/
get itemsExpr(): Function | string;
set itemsExpr(value: Function | string);
/**
* Specifies a custom template for items.
*/
get itemTemplate(): any;
set itemTemplate(value: any);
/**
* Specifies which data field provides keys for TreeView items.
*/
get keyExpr(): Function | string;
set keyExpr(value: Function | string);
/**
* Specifies the text or HTML markup displayed by the UI component if the item collection is empty.
*/
get noDataText(): string;
set noDataText(value: string);
/**
* Specifies the name of the data source item field for holding the parent key of the corresponding node.
*/
get parentIdExpr(): Function | string;
set parentIdExpr(value: Function | string);
/**
* Specifies the root key.
*/
get rootValue(): any;
set rootValue(value: any);
/**
* Switches the UI component to a right-to-left representation.
*/
get rtlEnabled(): boolean;
set rtlEnabled(value: boolean);
/**
* A string value specifying available scrolling directions.
*/
get scrollDirection(): ScrollDirection;
set scrollDirection(value: ScrollDirection);
/**
* Configures the search panel.
*/
get searchEditorOptions(): dxTextBoxOptions<any>;
set searchEditorOptions(value: dxTextBoxOptions<any>);
/**
* Specifies whether the search panel is visible.
*/
get searchEnabled(): boolean;
set searchEnabled(value: boolean);
/**
* Specifies a data object's field name or an expression whose value is compared to the search string.
*/
get searchExpr(): Array<Function | string> | Function | string;
set searchExpr(value: Array<Function | string> | Function | string);
/**
* Specifies a comparison operation used to search UI component items.
*/
get searchMode(): SearchMode;
set searchMode(value: SearchMode);
/**
* Specifies a delay in milliseconds between when a user finishes typing, and the search is executed.
*/
get searchTimeout(): number | undefined;
set searchTimeout(value: number | undefined);
/**
* Specifies the current search string.
*/
get searchValue(): string;
set searchValue(value: string);
/**
* Specifies the text displayed at the 'Select All' check box.
*/
get selectAllText(): string;
set selectAllText(value: string);
/**
* Specifies whether an item is selected if a user clicks it.
*/
get selectByClick(): boolean;
set selectByClick(value: boolean);
/**
* Specifies the name of the data source item field whose value defines whether or not the corresponding UI component items is selected.
*/
get selectedExpr(): Function | string;
set selectedExpr(value: Function | string);
/**
* Specifies item selection mode. Applies only if selection is enabled.
*/
get selectionMode(): SingleOrMultiple;
set selectionMode(value: SingleOrMultiple);
/**
* Specifies whether all child nodes should be selected when their parent node is selected. Applies only if the selectionMode is 'multiple'.
*/
get selectNodesRecursive(): boolean;
set selectNodesRecursive(value: boolean);
/**
* Specifies the checkbox display mode.
*/
get showCheckBoxesMode(): TreeViewCheckBoxMode;
set showCheckBoxesMode(value: TreeViewCheckBoxMode);
/**
* Specifies the number of the element when the Tab key is used for navigating.
*/
get tabIndex(): number;
set tabIndex(value: number);
/**
* Specifies whether or not the UI component uses native scrolling.
*/
get useNativeScrolling(): boolean;
set useNativeScrolling(value: boolean);
/**
* Enables the virtual mode in which nodes are loaded on demand. Use it to enhance the performance on large datasets.
*/
get virtualModeEnabled(): boolean;
set virtualModeEnabled(value: boolean);
/**
* Specifies whether the UI component is visible.
*/
get visible(): boolean;
set visible(value: boolean);
/**
* Specifies the UI component's width.
*/
get width(): number | string | undefined;
set width(value: number | string | undefined);
/**
* A function that is executed when the UI component is rendered and each time the component is repainted.
*/
onContentReady: EventEmitter<ContentReadyEvent>;
/**
* A function that is executed before the UI component is disposed of.
*/
onDisposing: EventEmitter<DisposingEvent>;
/**
* A function used in JavaScript frameworks to save the UI component instance.
*/
onInitialized: EventEmitter<InitializedEvent>;
/**
* A function that is executed when a collection item is clicked or tapped.
*/
onItemClick: EventEmitter<ItemClickEvent>;
/**
* A function that is executed when a tree view item is collapsed.
*/
onItemCollapsed: EventEmitter<ItemCollapsedEvent>;
/**
* A function that is executed when a collection item is right-clicked or pressed.
*/
onItemContextMenu: EventEmitter<ItemContextMenuEvent>;
/**
* A function that is executed when a tree view item is expanded.
*/
onItemExpanded: EventEmitter<ItemExpandedEvent>;
/**
* A function that is executed when a collection item has been held for a specified period.
*/
onItemHold: EventEmitter<ItemHoldEvent>;
/**
* A function that is executed after a collection item is rendered.
*/
onItemRendered: EventEmitter<ItemRenderedEvent>;
/**
* A function that is executed when a single TreeView item is selected or selection is canceled.
*/
onItemSelectionChanged: EventEmitter<ItemSelectionChangedEvent>;
/**
* A function that is executed after a UI component property is changed.
*/
onOptionChanged: EventEmitter<OptionChangedEvent>;
/**
* A function that is executed when the 'Select All' check box value is changed. Applies only if showCheckBoxesMode is 'selectAll' and selectionMode is 'multiple'.
*/
onSelectAllValueChanged: EventEmitter<SelectAllValueChangedEvent>;
/**
* A function that is executed when a TreeView item is selected or selection is canceled.
*/
onSelectionChanged: EventEmitter<SelectionChangedEvent>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
accessKeyChange: EventEmitter<string | undefined>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
activeStateEnabledChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
animationEnabledChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
collapseIconChange: EventEmitter<null | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
createChildrenChange: EventEmitter<((parentNode: dxTreeViewNode) => any | Array<Record<string, any>>)>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
dataSourceChange: EventEmitter<Array<dxTreeViewItem> | DataSource | DataSourceOptions | null | Store | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
dataStructureChange: EventEmitter<DataStructure>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
disabledChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
disabledExprChange: EventEmitter<Function | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
displayExprChange: EventEmitter<((item: any) => string) | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
elementAttrChange: EventEmitter<Record<string, any>>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
expandAllEnabledChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
expandedExprChange: EventEmitter<Function | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
expandEventChange: EventEmitter<TreeViewExpandEvent>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
expandIconChange: EventEmitter<null | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
expandNodesRecursiveChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
focusStateEnabledChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
hasItemsExprChange: EventEmitter<Function | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
heightChange: EventEmitter<number | string | undefined>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
hintChange: EventEmitter<string | undefined>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
hoverStateEnabledChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
itemHoldTimeoutChange: EventEmitter<number>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
itemsChange: EventEmitter<Array<any | dxTreeViewItem>>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
itemsExprChange: EventEmitter<Function | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
itemTemplateChange: EventEmitter<any>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
keyExprChange: EventEmitter<Function | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
noDataTextChange: EventEmitter<string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
parentIdExprChange: EventEmitter<Function | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
rootValueChange: EventEmitter<any>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
rtlEnabledChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
scrollDirectionChange: EventEmitter<ScrollDirection>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
searchEditorOptionsChange: EventEmitter<dxTextBoxOptions<any>>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
searchEnabledChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
searchExprChange: EventEmitter<Array<Function | string> | Function | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
searchModeChange: EventEmitter<SearchMode>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
searchTimeoutChange: EventEmitter<number | undefined>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
searchValueChange: EventEmitter<string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
selectAllTextChange: EventEmitter<string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
selectByClickChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
selectedExprChange: EventEmitter<Function | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
selectionModeChange: EventEmitter<SingleOrMultiple>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
selectNodesRecursiveChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
showCheckBoxesModeChange: EventEmitter<TreeViewCheckBoxMode>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
tabIndexChange: EventEmitter<number>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
useNativeScrollingChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
virtualModeEnabledChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
visibleChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
widthChange: EventEmitter<number | string | undefined>;
constructor(elementRef: ElementRef, ngZone: NgZone, templateHost: DxTemplateHost, _watcherHelper: WatcherHelper, _idh: IterableDifferHelper, optionHost: NestedOptionHost, transferState: TransferState, platformId: any);
protected _createInstance(element: any, options: any): DxTreeView<any, any>;
ngOnDestroy(): void;
ngOnChanges(changes: SimpleChanges): void;
setupChanges(prop: string, changes: SimpleChanges): void;
ngDoCheck(): void;
_setOption(name: string, value: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DxTreeViewComponent<any, any>, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DxTreeViewComponent<any, any>, "dx-tree-view", never, { "accessKey": { "alias": "accessKey"; "required": false; }; "activeStateEnabled": { "alias": "activeStateEnabled"; "required": false; }; "animationEnabled": { "alias": "animationEnabled"; "required": false; }; "collapseIcon": { "alias": "collapseIcon"; "required": false; }; "createChildren": { "alias": "createChildren"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "dataStructure": { "alias": "dataStructure"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "disabledExpr": { "alias": "disabledExpr"; "required": false; }; "displayExpr": { "alias": "displayExpr"; "required": false; }; "elementAttr": { "alias": "elementAttr"; "required": false; }; "expandAllEnabled": { "alias": "expandAllEnabled"; "required": false; }; "expandedExpr": { "alias": "expandedExpr"; "required": false; }; "expandEvent": { "alias": "expandEvent"; "required": false; }; "expandIcon": { "alias": "expandIcon"; "required": false; }; "expandNodesRecursive": { "alias": "expandNodesRecursive"; "required": false; }; "focusStateEnabled": { "alias": "focusStateEnabled"; "required": false; }; "hasItemsExpr": { "alias": "hasItemsExpr"; "required": false; }; "height": { "alias": "height"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "hoverStateEnabled": { "alias": "hoverStateEnabled"; "required": false; }; "itemHoldTimeout": { "alias": "itemHoldTimeout"; "required": false; }; "items": { "alias": "items"; "required": false; }; "itemsExpr": { "alias": "itemsExpr"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "keyExpr": { "alias": "keyExpr"; "required": false; }; "noDataText": { "alias": "noDataText"; "required": false; }; "parentIdExpr": { "alias": "parentIdExpr"; "required": false; }; "rootValue": { "alias": "rootValue"; "required": false; }; "rtlEnabled": { "alias": "rtlEnabled"; "required": false; }; "scrollDirection": { "alias": "scrollDirection"; "required": false; }; "searchEditorOptions": { "alias": "searchEditorOptions"; "required": false; }; "searchEnabled": { "alias": "searchEnabled"; "required": false; }; "searchExpr": { "alias": "searchExpr"; "required": false; }; "searchMode": { "alias": "searchMode"; "required": false; }; "searchTimeout": { "alias": "searchTimeout"; "required": false; }; "searchValue": { "alias": "searchValue"; "required": false; }; "selectAllText": { "alias": "selectAllText"; "required": false; }; "selectByClick": { "alias": "selectByClick"; "required": false; }; "selectedExpr": { "alias": "selectedExpr"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "selectNodesRecursive": { "alias": "selectNodesRecursive"; "required": false; }; "showCheckBoxesMode": { "alias": "showCheckBoxesMode"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "useNativeScrolling": { "alias": "useNativeScrolling"; "required": false; }; "virtualModeEnabled": { "alias": "virtualModeEnabled"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "onContentReady": "onContentReady"; "onDisposing": "onDisposing"; "onInitialized": "onInitialized"; "onItemClick": "onItemClick"; "onItemCollapsed": "onItemCollapsed"; "onItemContextMenu": "onItemContextMenu"; "onItemExpanded": "onItemExpanded"; "onItemHold": "onItemHold"; "onItemRendered": "onItemRendered"; "onItemSelectionChanged": "onItemSelectionChanged"; "onOptionChanged": "onOptionChanged"; "onSelectAllValueChanged": "onSelectAllValueChanged"; "onSelectionChanged": "onSelectionChanged"; "accessKeyChange": "accessKeyChange"; "activeStateEnabledChange": "activeStateEnabledChange"; "animationEnabledChange": "animationEnabledChange"; "collapseIconChange": "collapseIconChange"; "createChildrenChange": "createChildrenChange"; "dataSourceChange": "dataSourceChange"; "dataStructureChange": "dataStructureChange"; "disabledChange": "disabledChange"; "disabledExprChange": "disabledExprChange"; "displayExprChange": "displayExprChange"; "elementAttrChange": "elementAttrChange"; "expandAllEnabledChange": "expandAllEnabledChange"; "expandedExprChange": "expandedExprChange"; "expandEventChange": "expandEventChange"; "expandIconChange": "expandIconChange"; "expandNodesRecursiveChange": "expandNodesRecursiveChange"; "focusStateEnabledChange": "focusStateEnabledChange"; "hasItemsExprChange": "hasItemsExprChange"; "heightChange": "heightChange"; "hintChange": "hintChange"; "hoverStateEnabledChange": "hoverStateEnabledChange"; "itemHoldTimeoutChange": "itemHoldTimeoutChange"; "itemsChange": "itemsChange"; "itemsExprChange": "itemsExprChange"; "itemTemplateChange": "itemTemplateChange"; "keyExprChange": "keyExprChange"; "noDataTextChange": "noDataTextChange"; "parentIdExprChange": "parentIdExprChange"; "rootValueChange": "rootValueChange"; "rtlEnabledChange": "rtlEnabledChange"; "scrollDirectionChange": "scrollDirectionChange"; "searchEditorOptionsChange": "searchEditorOptionsChange"; "searchEnabledChange": "searchEnabledChange"; "searchExprChange": "searchExprChange"; "searchModeChange": "searchModeChange"; "searchTimeoutChange": "searchTimeoutChange"; "searchValueChange": "searchValueChange"; "selectAllTextChange": "selectAllTextChange"; "selectByClickChange": "selectByClickChange"; "selectedExprChange": "selectedExprChange"; "selectionModeChange": "selectionModeChange"; "selectNodesRecursiveChange": "selectNodesRecursiveChange"; "showCheckBoxesModeChange": "showCheckBoxesModeChange"; "tabIndexChange": "tabIndexChange"; "useNativeScrollingChange": "useNativeScrollingChange"; "virtualModeEnabledChange": "virtualModeEnabledChange"; "visibleChange": "visibleChange"; "widthChange": "widthChange"; }, ["_buttonsContentChildren", "_itemsContentChildren"], never, true, never>;
}
export declare class DxTreeViewModule {
static ɵfac: i0.ɵɵFactoryDeclaration<DxTreeViewModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<DxTreeViewModule, never, [typeof DxTreeViewComponent, typeof i1.DxiItemModule, typeof i1.DxoSearchEditorOptionsModule, typeof i1.DxiButtonModule, typeof i1.DxoOptionsModule, typeof i2.DxiTreeViewButtonModule, typeof i2.DxiTreeViewItemModule, typeof i2.DxoTreeViewOptionsModule, typeof i2.DxoTreeViewSearchEditorOptionsModule, typeof i3.DxIntegrationModule, typeof i3.DxTemplateModule], [typeof DxTreeViewComponent, typeof i1.DxiItemModule, typeof i1.DxoSearchEditorOptionsModule, typeof i1.DxiButtonModule, typeof i1.DxoOptionsModule, typeof i2.DxiTreeViewButtonModule, typeof i2.DxiTreeViewItemModule, typeof i2.DxoTreeViewOptionsModule, typeof i2.DxoTreeViewSearchEditorOptionsModule, typeof i3.DxTemplateModule]>;
static ɵinj: i0.ɵɵInjectorDeclaration<DxTreeViewModule>;
}
export * from 'devextreme-angular/ui/tree-view/nested';
export { DxTreeViewTypes };