import { type TableColumn } from '@mezzanine-ui/core/table'; export interface TableResizeHandleProps { /** The column this resize handle belongs to */ column: TableColumn; /** Index of the column in the columns array */ columnIndex: number; } /** * TableResizeHandle provides column resizing functionality. * It adjusts the width of the current column and the next column together, * maintaining the total width of both columns. */ export declare const TableResizeHandle: import("react").NamedExoticComponent;