/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Configures whether a column menu item is initially expanded.
 * You can set this option for the `columnChooser` and `filter` [`ColumnMenuSettings`](https://www.telerik.com/kendo-angular-ui/components/grid/api/columnmenusettings) options.
 *
 */
export interface ExpandableColumnMenuItem {
    /**
     * Specifies if the expandable column menu item is initially expanded.
     */
    expanded: boolean;
}
