import * as PropTypes from "prop-types";
import * as React from "react";
declare const propTypes: {
    options: PropTypes.Validator<number[]>;
    setItemsPerPage: PropTypes.Validator<(...args: any[]) => any>;
    itemsPerPage: PropTypes.Requireable<number>;
};
declare const PaginationSelect: React.FunctionComponent<PropTypes.InferProps<typeof propTypes>>;
export default PaginationSelect;
