import { type Ref, type RefObject } from 'react'; import { DataTableV2ColumnSettingsModalRef } from '../components/Toolbar/ColumnSettings/DataTableV2ColumnSettingsModal.js'; import type { Table } from '../hooks/useTable/types.js'; import { type DataTableV2Ref } from '../public.api.js'; import type { DataTableV2ThresholdProps } from './Thresholds/Thresholds.js'; /** * Extends the ref of the DataTableV2 with additional configuration and control options. * @internal */ export declare function useDataTableV2ConfigRef(forwardedRef: Ref, columnSettingsModalRef: RefObject, table: Table, props: DataTableV2ThresholdProps): import("react").RefCallback;