import type { ReactTable } from '@tanstack/react-table'; import { type Ref, type RefObject } from 'react'; import type { DataTableColumnSettingsModalRef } from '../components/Toolbar/ColumnSettings/column-settings-types.js'; import type { DataTableRef } from '../public.api.js'; import type { DataTableRowData } from '../row-data-types.js'; import type { DataTableThresholdProps } from './Thresholds/threshold-types.js'; import type { TDataTableFeatures } from './types/features.types.js'; /** * Extends the ref of the DataTable with additional configuration and control options. * @internal */ export declare function useDataTableConfigRef(forwardedRef: Ref, columnSettingsModalRef: RefObject, table: ReactTable>, props: DataTableThresholdProps): import("react").RefCallback;