import { type TableOptions } from '@tanstack/react-table'; import type { DataTableRowOrderProps } from './row-order-types.js'; import type { DataTableRowData } from '../../row-data-types.js'; import type { TDataTableFeatures } from '../types/features.types.js'; /** * Configuration hook for the row order in the DataTable. * @internal */ export declare function useRowOrder(props: DataTableRowOrderProps, options: TableOptions>): void;