/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the selection mode of the [ButtonGroup](https://www.telerik.com/kendo-angular-ui/components/buttons/api/buttongroupcomponent).
 *
 * - Use `'single'` to allow only one button to be selected at a time.
 * - Use `'multiple'` to allow multiple buttons to be selected at the same time.
 */
export type ButtonGroupSelection = 'single' | 'multiple';
