/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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`](slug:api_treeview_treeviewcomponent#nodedrag) and
 * [`nodeDragEnd`](slug:api_treeview_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;
}
