import type TableLayout from './table-layout'; import type { Table } from '../Table'; declare function useLayoutObserver(root: Table): { tableLayout: TableLayout; onColumnsChange: (layout: TableLayout) => void; onScrollableChange: (layout: TableLayout) => void; }; export default useLayoutObserver;