UNPKG

@teamsnap/teamsnap-ui

Version:

a CSS component library for TeamSnap

10 lines (9 loc) 393 B
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;