export default Totalizer; declare class Totalizer extends React.PureComponent { constructor(props: Readonly); constructor(props: any, context?: any); render(): JSX.Element; } declare namespace Totalizer { export namespace defaultProps { export const value: any; export const iconBackgroundColor: string; export const icon: any; export const isLoading: boolean; } export namespace propTypes { export const items: PropTypes.Validator; value: PropTypes.Requireable; iconBackgroundColor: PropTypes.Requireable; icon: PropTypes.Requireable; isLoading: PropTypes.Requireable; }>[]>; } } import React from "react"; import PropTypes from "prop-types";