import { type RowData, type RowModel, type Table, type TableFeatures } from '@tanstack/react-table'; /** * Creates a custom pagination row model. * * @returns A function that takes a table instance and returns a memoed function to get the paginated row model. */ export declare function createPaginatedRowModel(): (table: Table) => () => RowModel;