export default class BrPaginator extends React.PureComponent { static propTypes: { currentPage: PropTypes.Validator; numPerPage: PropTypes.Validator; totalCount: PropTypes.Validator; perPageOptions: PropTypes.Requireable<(number | null | undefined)[]>; onChangePage: PropTypes.Validator<(...args: any[]) => any>; onChangeNumPerPage: PropTypes.Requireable<(...args: any[]) => any>; }; static defaultProps: { perPageOptions: number[]; }; constructor(props: any); constructor(props: any, context: any); UNSAFE_componentWillReceiveProps(nextProps: any): void; render(): JSX.Element; } import React from 'react'; import PropTypes from 'prop-types';