import { Dispatch, SetStateAction } from 'react'; interface ICursor { pageSize: number; hasNext?: boolean; cursorNext?: string; hasPrevious?: boolean; cursorPrevious?: string; setCursor: Dispatch>; onRowChange?: Dispatch>; } declare const CursorPagination: ({ pageSize, hasNext, setCursor, cursorNext, hasPrevious, onRowChange, cursorPrevious }: ICursor) => JSX.Element; export default CursorPagination; //# sourceMappingURL=cursor.d.ts.map