/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Represents the editable settings of the Scheduler.
 */
export interface EditableSettings {
    /**
     * Specifies if the user can remove events using a **Remove** icon.
     */
    remove: boolean;
    /**
     * Specifies if the user can drag events.
     */
    drag: boolean;
    /**
     * Specifies if the user can resize events.
     */
    resize: boolean;
    /**
     * Specifies if the user can add new events on [`slotDblClick`](https://www.telerik.com/kendo-angular-ui/components/scheduler/api/schedulercomponent#slotdblclick) when using the editing directives.
     */
    add: boolean;
    /**
     * Specifies if the user can edit events on [`eventDblClick`](https://www.telerik.com/kendo-angular-ui/components/scheduler/api/schedulercomponent#eventdblclick) when using the editing directives.
     */
    edit: boolean;
}
