/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { SchedulerResource } from './SchedulerResource';
/**
 * Represents the Scheduler `Group` object, calculated based on the [group](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-group) and [resources](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-resources)
 */
export interface Group {
    /**
     * The index of the group.
     */
    index: number;
    /**
     * The array of resources that belong to this group.
     */
    resources: SchedulerResource[];
}
