import { type Row, type RowData, type TableFeatures } from '@tanstack/react-table'; import type { ScrollToOptions } from '@tanstack/react-virtual'; /** * Provides all necessary props for an interactive row element. * * @param row - the table row element * @param scrollToIndex - rowVirtualizer function for scrolling to the row with the specified index * @returns className and props for the row element */ export declare function useRowInteractivityProps(row: Row, scrollToIndex: (index: number, options?: ScrollToOptions) => void): { rowInteractivityClassName: string; rowInteractivityProps: Record | undefined; };