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