/**
 * @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';
import { GridColumnMenuFilterBaseProps } from './GridColumnMenuFilterBaseProps';
import { GridColumnMenuGroupBaseProps } from './GridColumnMenuGroupBaseProps';
import { GridColumnMenuSortBaseProps } from './GridColumnMenuSortBaseProps';
/**
 * 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;
}
