export class CurrentPageReport extends React.Component { static defaultProps: { pageCount: null; page: null; first: null; rows: null; totalRecords: null; reportTemplate: string; template: null; }; static propTypes: { pageCount: PropTypes.Requireable; page: PropTypes.Requireable; first: PropTypes.Requireable; rows: PropTypes.Requireable; totalRecords: PropTypes.Requireable; reportTemplate: PropTypes.Requireable; template: PropTypes.Requireable; }; constructor(props: any); constructor(props: any, context: any); } import React from "react"; import PropTypes from "prop-types";