/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the visibility of the toolbar tool text or icon.
 *
 * The possible values are:
 * - `always`&mdash;The text or icon is always visible, regardless of the current overflow mode.
 * - `toolbar`&mdash;The text or icon is displayed in the main ToolBar and in the overflow element when `section` overflow mode is used.
 * - `menu`&mdash;The text or icon is displayed only in the overflow popup when `menu` overflow mode is used.
 * - `never`&mdash;The text or icon is never rendered.
 *
 * @default 'always'
 */
export type DisplayMode = 'always' | 'toolbar' | 'menu' | 'never';
