/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { GridColumnMenuColumnsChooserBaseProps } from './GridColumnMenuColumnsChooserBaseProps.js';
import { GridColumnMenuFilterBaseProps } from './GridColumnMenuFilterBaseProps.js';
import { GridColumnMenuGroupBaseProps } from './GridColumnMenuGroupBaseProps.js';
import { GridColumnMenuSortBaseProps } from './GridColumnMenuSortBaseProps.js';
/**
 * The props which the ColumnMenu passes to its children.
 */
export interface GridColumnMenuProps extends GridColumnMenuFilterBaseProps, GridColumnMenuSortBaseProps, GridColumnMenuGroupBaseProps, GridColumnMenuColumnsChooserBaseProps {
    /**
     * Determines if the column menu supports keyboard navigation.
     */
    navigatable?: boolean;
    /**
     * Determines if the column menu is visible.
     */
    show?: boolean;
}
