/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Defines the possible positions where the Gantt toolbar or its tools render.
 */
export type ToolbarPosition = 'top' | 'bottom' | 'both' | 'none';
/**
 * Configures the toolbar's position and content.
 */
export interface ToolbarSettings {
    /**
     * Sets the position of the toolbar(s).
     * @default 'top'
     */
    position?: ToolbarPosition;
    /**
     * Sets the position of the toolbar(s) where the [`AddTaskComponent`](https://www.telerik.com/kendo-angular-ui/components/gantt/api/ganttaddtaskcomponent) renders.
     * @default 'none'
     */
    addTaskTool?: ToolbarPosition;
    /**
     * Sets the position of the toolbar(s) where the [`ViewSelectorComponent`](https://www.telerik.com/kendo-angular-ui/components/gantt/api/viewselectorcomponent) renders.
     * @default 'top'
     */
    viewSelectorTool?: ToolbarPosition;
}
