import * as PropTypes from "prop-types";
import * as React from "react";
declare const propTypes: {
    totalItems: PropTypes.Validator<number>;
    itemsPerPage: PropTypes.Validator<number>;
    currentPage: PropTypes.Validator<number>;
    setCurrentPage: PropTypes.Validator<(...args: any[]) => any>;
    style: PropTypes.Requireable<object>;
    mods: PropTypes.Requireable<string>;
};
declare const PaginationButtons: React.FunctionComponent<PropTypes.InferProps<typeof propTypes>>;
export default PaginationButtons;
