/**-----------------------------------------------------------------------------------------
* 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 { PreventableEvent } from '@progress/kendo-angular-common';
import { TaskEditItem } from './task-edit-event.interface';
/**
 * Represents the arguments for the `cellClose` event of the Gantt.
 */
export declare class CellCloseEvent extends PreventableEvent {
    /**
     * Holds the data item.
     */
    dataItem: any;
    /**
     * Indicates if the data item is new or existing.
     */
    isNew: boolean;
    /**
     * Contains the Gantt column associated with the closed cell.
     */
    column: any;
    /**
     * Contains the [`FormGroup`](link:site.data.urls.angular['formgroupapi']) used to edit the cell that will be closed.
     */
    formGroup: any;
    /**
     * Contains the DOM event that triggered the `cellClose` event.
     * This property may be missing if `cellClose` is triggered by an API call.
     */
    originalEvent: any;
    /**
     * Holds the `GanttComponent` instance.
     */
    sender: GanttComponent;
    /**
     * Contains the `TaskEditItem` for the edited task.
     * Access the parent item through the `parent` property to traverse all ancestors that need updates.
     */
    item: TaskEditItem;
    constructor(options: any);
}
