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