export class RowsPerPageDropdown extends React.Component { static defaultProps: { options: null; value: null; page: null; pageCount: null; totalRecords: number; appendTo: null; onChange: null; template: null; }; static propTypes: { options: PropTypes.Requireable; value: PropTypes.Requireable; page: PropTypes.Requireable; pageCount: PropTypes.Requireable; totalRecords: PropTypes.Requireable; appendTo: PropTypes.Requireable; onChange: PropTypes.Requireable<(...args: any[]) => any>; template: PropTypes.Requireable; }; constructor(props: any); constructor(props: any, context: any); hasOptions(): boolean; } import React from "react"; import PropTypes from "prop-types";