import { FC } from 'react'; declare const Pagination: FC; export declare type PaginationProps = { textShowRows: string; textOf: string; rowsOptions: Array; currentItemFrom: number; currentItemTo: number; totalItems: number; onNextClick: (e: any) => void; onPrevClick: (e: any) => void; onRowsChange: (e: any, value: any) => void; }; export default Pagination;