/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { TreeItemLookup } from '../../treeitem-lookup.interface'; /** * Arguments for the TreeView [`nodeDrag`](https://www.telerik.com/kendo-angular-ui/components/treeview/api/treeviewcomponent#nodedrag) and * [`nodeDragEnd`](https://www.telerik.com/kendo-angular-ui/components/treeview/api/treeviewcomponent#nodedragend) events. */ export declare class TreeItemDragEvent { /** @hidden */ constructor(); /** * Lookup information for the dragged item. */ sourceItem: TreeItemLookup; /** * Lookup information for the item currently under the dragged node, if any. */ destinationItem: TreeItemLookup; /** * The original pointer event containing details about the pointer position. */ originalEvent: PointerEvent; }