/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PropType } from 'vue'; import { TableSelectableSettings } from './TableSelectableSettings'; import { TableDragSelectionReleaseEvent } from './events'; /** * The descriptor used to define the selected state of a data-item. */ export type SelectDescriptor = { [id: string]: boolean | number[]; }; /** @hidden */ export interface TableSelectionProps { selectable?: TableSelectableSettings; } /** @hidden */ declare const TableSelection: import('vue').DefineComponent; }>, () => import('vue').VNode[], {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { release: (event: TableDragSelectionReleaseEvent) => true; }, string, import('vue').PublicProps, Readonly; }>> & Readonly<{ onRelease?: (event: TableDragSelectionReleaseEvent) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { TableSelection };