/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import type { GanttComponent } from '../../gantt.component';
import { TaskEditItem } from './task-edit-event.interface';
/**
 * Contains the event data for the [`taskDelete`](https://www.telerik.com/kendo-angular-ui/components/gantt/api/ganttcomponent#taskdelete) event.
 */
export interface TaskDeleteEvent {
    /**
     * Holds the item for the delete request.
     * You can access the parent item through the `parent` property to update all ancestors.
     */
    item: TaskEditItem;
    /**
     * Holds the `GanttComponent` instance.
     */
    sender: GanttComponent;
}
