import type { ReactTable, RowData } from '@tanstack/react-table'; import { type RefObject } from 'react'; import type { TDataTableFeatures } from '../features/types/features.types.js'; /** * Prevents horizontal scrolling while rows are dragged and vertical scrolling while columns are dragged. * @param table - The table instance. * @param parentRef - The ref of the parent container that is scrollable. */ export declare function DataTableDragScrollLock({ table, parentRef, }: Readonly<{ table: ReactTable; parentRef: RefObject; }>): null; //# sourceMappingURL=DataTableDragScrollLock.d.ts.map