/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Controls when the ToolBar renders scroll buttons.
 *
 * The possible options are:
 * - `auto`(default)&mdash;Renders the scroll buttons only when the tools overflow the ToolBar container.
 * - `visible`&mdash;Always renders the scroll buttons.
 * - `hidden`&mdash;Never renders the scroll buttons.
 */
export type ToolbarScrollButtonsVisibility = 'hidden' | 'visible' | 'auto';
/**
 * Controls where the ToolBar renders scroll buttons.
 *
 * The possible options are:
 * - `start`&mdash;Renders the scroll buttons at the start before all tools.
 * - `end`&mdash;Renders the scroll buttons at the end after all tools.
 * - `split`(default)&mdash;Renders the scroll buttons on both sides of the tools list.
 */
export type ToolbarScrollButtonsPosition = 'start' | 'end' | 'split';
