/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { TableSelectableSettings } from './TableSelectableSettings.js'; import { TableDragSelectionReleaseEvent } from './events.js'; import * as React from 'react'; /** * The descriptor used to define the selected state of a data-item. */ export type SelectDescriptor = { [id: string]: boolean | number[]; }; /** @hidden */ export interface TableSelectionProps { children: any; selectable?: TableSelectableSettings; onRelease: (options: TableDragSelectionReleaseEvent) => void; childRef?: (childElement: HTMLElement) => void; } /** @hidden */ export declare const TableSelection: (props: TableSelectionProps) => React.JSX.Element;