import { Table, RowModel, RowData } from '../../hooks/useTable/types.js'; /** * Sorted row model copied from the tanstack/react-table and adapted * for handling null and undefined values and control over custom sorting functionality. */ export declare function getSortedRowModel(): (table: Table) => () => RowModel;