/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { CheckDirective } from "./check.directive"; import { DisableDirective } from "./disable.directive"; import { DragAndDropEditingDirective } from "./drag-and-drop/drag-and-drop-editing.directive"; import { DragAndDropDirective } from "./drag-and-drop/drag-and-drop.directive"; import { DragClueTemplateDirective } from "./drag-and-drop/drag-clue/drag-clue-template.directive"; import { DropHintTemplateDirective } from "./drag-and-drop/drop-hint/drop-hint-template.directive"; import { ExpandDirective } from "./expand.directive"; import { FlatDataBindingDirective } from "./flat-binding.directive"; import { HierarchyBindingDirective } from "./hierarchy-binding.directive"; import { LoadMoreButtonTemplateDirective } from "./load-more/load-more-button-template.directive"; import { LoadMoreDirective } from "./load-more/load-more.directive"; import { CustomMessagesComponent } from "./localization/custom-messages.component"; import { NodeTemplateDirective } from "./node-template.directive"; import { SelectDirective } from "./selection/select.directive"; import { TreeViewComponent } from "./treeview.component"; /** * Use the `KENDO_TREEVIEW` utility array to add all `@progress/kendo-angular-treeview`-related components and directives to a standalone Angular component. * * @example * ```typescript * import { Component } from '@angular/core'; * import { KENDO_TREEVIEW } from '@progress/kendo-angular-treeview'; * * @Component({ * selector: 'my-app', * standalone: true, * imports: [KENDO_TREEVIEW], * template: `` * }) * export class AppComponent {} * ``` */ export declare const KENDO_TREEVIEW: readonly [typeof TreeViewComponent, typeof NodeTemplateDirective, typeof CheckDirective, typeof DisableDirective, typeof ExpandDirective, typeof SelectDirective, typeof HierarchyBindingDirective, typeof FlatDataBindingDirective, typeof DragAndDropDirective, typeof DragClueTemplateDirective, typeof DropHintTemplateDirective, typeof DragAndDropEditingDirective, typeof LoadMoreDirective, typeof LoadMoreButtonTemplateDirective, typeof CustomMessagesComponent];