import { InternalSelectionType, TableProps } from '../interfaces'; import { SelectionProps } from './interfaces'; type SelectionOptions = Pick, 'ariaLabels' | 'isItemDisabled' | 'items' | 'loading' | 'onSelectionChange' | 'selectedItems' | 'trackBy' | 'totalItemsCount'> & { setLastUserAction?: (name: string) => void; selectionType?: InternalSelectionType; }; export declare function useSelection(options: SelectionOptions): SelectionProps; export {};