import React from 'react'; import PropTypes from 'prop-types'; export default class DashBoard extends React.PureComponent { static propTypes: { CustomerComponent: PropTypes.Requireable; loadPlugin: PropTypes.Requireable<(...args: any[]) => any>; }; constructor(props: any); render(): any; }