import { type TableOptions_All } from '@tanstack/react-table'; import type { DataTableColumnSizingProps } from './column-sizing-types.js'; import type { DataTableRowData } from '../../row-data-types.js'; import type { TDataTableFeatures } from '../types/features.types.js'; /** * Configuration hook for column sizing feature, to manage the column sizing state and enable column resizing in the table options. * @internal */ export declare function useColumnSizing(props: DataTableColumnSizingProps, options: TableOptions_All>): void;