import type { RowData } from '@tanstack/react-table'; import type { DataTableColumnThreshold, DataTableRowThreshold, DataTableThresholdsNormalizedRule } from './threshold-types.js'; import type { DataTableRowData } from '../../public.api.js'; type Accessor = string | number | symbol | ((row: TData) => unknown); /** * Normalizes the simple rules and combined rules into a standard internal * rule set. * @internal */ export declare function normalizeThresholdRules[] | DataTableRowThreshold[]>(thresholds: ThresholdRule, fallbackAccessor?: Accessor): Array>; export {};