/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import type { TreeListComponent } from "../treelist.component";
/**
 * Provides arguments for the [`edit`](https://www.telerik.com/kendo-angular-ui/components/treelist/api/treelistcomponent#edit) event. Use this interface to access the data item, its state, and the TreeList component instance when editing a row.
 *
 */
export interface EditEvent {
    /**
     * Specifies the data item.
     */
    dataItem: any;
    /**
     * Indicates if the data item is new or existing.
     */
    isNew: boolean;
    /**
     * Provides the `TreeListComponent` instance.
     */
    sender: TreeListComponent;
}
