import type { RowData, RowModel, Table } from '../../hooks/useTable/types.js'; /** * 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 getPaginationRowModel(): (table: Table) => () => RowModel;