import React from 'react'; import cx from 'classnames'; import styles from './Pagination.module.scss'; export interface Props { className?: Parameters[0]; /** The 1-based numerical index of this page within the collection of pages */ currentPage: number; /** The total number of pages to be paginated */ totalPages: number; /** If set to true, used to activate a minimalist layout with only First, Previous, Next, and Last controls. */ hidePageNumbers?: boolean; onPageChange: (arg0: number) => void; } export declare const Pagination: React.FC; export default Pagination; export { styles }; //# sourceMappingURL=index.d.ts.map