/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Sets the visibility for the ToolBar tool text or icon.
 *
 * The possible values are:
 * - `always`&mdash;Always shows the text or icon regardless of the overflow mode.
 * - `toolbar`&mdash;Shows in the main ToolBar and in the overflow element when using `section` overflow mode.
 * - `menu`&mdash;Shows only in the overflow popup when using `menu` overflow mode.
 * - `never`&mdash;Never renders the text or icon.
 *
 * @default 'always'
 */
export type DisplayMode = 'always' | 'toolbar' | 'menu' | 'never';
