/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { FormGroup } from '@angular/forms';
import { EditMode } from '../types';
/**
 * Defines the options for the [`editEvent`](https://www.telerik.com/kendo-angular-ui/components/scheduler/api/schedulercomponent#editevent) method of the Scheduler.
 */
export interface EditEventArgs {
    /**
     * Provides the [`FormGroup`](https://angular.io/docs/ts/latest/api/forms/index/FormGroup-class.html) that describes the edit form.
     */
    group?: FormGroup;
    /**
     * Specifies the selected edit mode of the event.
     */
    mode?: EditMode;
}
