import { type MutableRefObject } from 'react'; import type { TableState, Updater } from './useTable/types.js'; /** * Handles resizing of the DataTable root container. * @returns root ref * @internal */ export declare function useTableRootResize( /** * Remeasures the rows in the table. */ remeasureRows: (virtualizationContainerWidth?: number) => void, /** * Sets the table state. */ setTableState: (updater: Updater) => void): MutableRefObject;