export default class Counter extends React.PureComponent<any, any, any> {
    static propTypes: {
        count: PropTypes.Validator<number>;
        limit: PropTypes.Requireable<number>;
        baseColor: PropTypes.Validator<string>;
        errorColor: PropTypes.Validator<string>;
        style: any;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    render(): JSX.Element | null;
}
import React from "react";
import PropTypes from "prop-types";
