import { type TableOptions } from '@tanstack/react-table'; import type { DataTableThresholdProps } from './threshold-types.js'; import type { DataTableRowData } from '../../row-data-types.js'; import type { TDataTableFeatures } from '../types/features.types.js'; /** * Hook configuring the thresholds feature for the DataTable. * @internal */ export declare function useThresholds(props: DataTableThresholdProps, options: TableOptions>): void;