import { type TableOptions_All } from '@tanstack/react-table'; import type { DataTableSortingProps } from './sorting-types.js'; import type { DataTableRowData } from '../../row-data-types.js'; import type { TDataTableFeatures } from '../types/features.types.js'; /** * Configuration hook for the DataTable sorting feature. * @internal */ export declare function useSorting(props: DataTableSortingProps, options: TableOptions_All>): void;