/**
 * @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 '../interfaces/GridColumnMenuColumnsChooserBaseProps.js';
import * as React from 'react';
/**
 * The props of the GridColumnMenuColumnsChooser component.
 */
export interface GridColumnMenuColumnsChooserProps extends GridColumnMenuColumnsChooserBaseProps {
    /**
     * If set to `true`, column chooser expand button will not be rendered and column chooser menu will be expanded.
     */
    alwaysExpand?: boolean;
    /**
     * Controls the expand state of the column chooser component.
     */
    expanded?: boolean;
    /**
     * Triggered on each subsequent expand state of the column chooser component.
     */
    onExpandChange?: (nextExpandState: boolean) => void;
}
/**
 * Represents the KendoReact GridColumnMenuColumnsChooser component.
 */
export declare const GridColumnMenuColumnsChooser: React.FunctionComponent<GridColumnMenuColumnsChooserProps>;
