import React from 'react'; import { type ColumnAdjusterProps } from './types'; /** * Component that is placed on top of column border. * The vertical borders in the header can be used to change the column width. * When you start dragging, mouse move and mouse up listeners are added (as well as corresponding touch events). * While dragging the current column can be updated, and on mouse up the width is confirmed. * By passing callbacks the behavior for updating and confirming width can be modified. */ declare const ColumnAdjuster: ({ columnWidth, keyValue, isLastColumn, isPivot, isNewHeadCellMenuEnabled, hoverColor, updateWidthCallback, confirmWidthCallback, handleBlur, setIsAdjustingWidth, isLeftColumn, }: ColumnAdjusterProps) => React.JSX.Element; export default ColumnAdjuster;