export default class BrPaginatorV2 extends 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>; displayText: PropTypes.Requireable; skipAutoPageNumUpdate: PropTypes.Requireable; }; static defaultProps: { perPageOptions: number[]; }; constructor(props: any); constructor(props: any, context: any); UNSAFE_componentWillReceiveProps(nextProps: any): void; render(): JSX.Element; } import { PureComponent } from 'react'; import PropTypes from 'prop-types';