import { type TableOptions } from '@tanstack/react-table'; import type { DataTableRowInteractivityProps } from './row-interactivity-types.js'; import type { DataTableRowData } from '../../row-data-types.js'; import type { TDataTableFeatures } from '../types/features.types.js'; /** * Configuration hook for the rowInteractivity in the DataTable. * @internal */ export declare function useRowInteractivity(props: DataTableRowInteractivityProps, options: TableOptions>): void;