import { Table, RowModel, RowData } from '../types';
export declare function getPaginationRowModel<TData extends RowData>(opts?: {
    initialSync: boolean;
}): (table: Table<TData>) => () => RowModel<TData>;
