import type { DataTableThresholdProps } from './threshold-types.js'; import { type TableFeature, type TableOptions } from '../../hooks/useTable/types.js'; /** * Hook configuring the thresholds feature for the DataTable. * @internal */ export declare function useThresholds(props: DataTableThresholdProps, options: TableOptions): void; /** * Feature to handle thresholds to help in row and cell highlighting. * @internal */ export declare const Thresholds: TableFeature;