import { type RowData, type TableOptions } from '@tanstack/react-table'; import type { DataTableColumnPinningProps } from './column-pinning-types.js'; import { DataTableColumnOrderProps } from '../ColumnOrder/column-order-types.js'; import type { TDataTableFeatures } from '../types/features.types.js'; /** * Configuration hook for the DataTable column pinning feature. * @internal */ export declare function useColumnPinning(props: DataTableColumnPinningProps & DataTableColumnOrderProps, options: TableOptions): void;