/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { GridHeaderCellProps } from './GridHeaderCellProps';
/**
 * The props of the GridHeaderSelectionCellProps component.
 */
/**
 * @hidden
 */
export interface GridHeaderSelectionCellProps extends GridHeaderCellProps {
    /**
     * The `selectionChange` event handler of the cell.
     */
    selectionChange?: any;
    /**
     * The `selectionValue` event handler of the column in which the cell is located.
     */
    selectionValue: any;
}
