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