import * as PropTypes from "prop-types";
import * as React from "react";
declare const propTypes: {
    currentPage: PropTypes.Validator<number>;
    totalItems: PropTypes.Validator<number>;
    itemsPerPage: PropTypes.Validator<number>;
};
declare const PaginationCurrentSubsetDisplay: React.FunctionComponent<PropTypes.InferProps<typeof propTypes>>;
export default PaginationCurrentSubsetDisplay;
