///
import PropTypes from 'prop-types';
import { IPaginationProps } from '../../interfaces/Pagination';
export declare function Pagination({ setCurrentPage, maxPages, buttonBgColor, buttonTextColor, ...args }: IPaginationProps): JSX.Element;
export declare namespace Pagination {
var propTypes: {
currentPage: PropTypes.Requireable;
maxPages: PropTypes.Requireable;
setCurrentPage: PropTypes.Requireable<(...args: any[]) => any>;
buttonBgColor: PropTypes.Requireable;
buttonTextColor: PropTypes.Requireable;
};
}