import type { DataTableSortingProps } from './sorting-types.js'; import type { TableFeature, TableOptions } from '../../hooks/useTable/types.js'; import type { DataTableRowData } from '../../public.api.js'; /** * Configuration hook for the DataTable sorting feature. * @internal */ export declare function useSorting(props: DataTableSortingProps, options: TableOptions): void; /** * @internal */ export declare const Sorting: TableFeature;