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