import { HTMLAttributes, ReactNode, PureComponent } from 'react'; import PropTypes from 'prop-types'; import { CombinePropsAndAttributes } from '../../helpers'; export { default as BadgeContainer } from './BadgeContainer'; interface ISelfProps { children?: ReactNode; } export declare type IProps = CombinePropsAndAttributes>; export default class Badge extends PureComponent { static propTypes: { children: PropTypes.Requireable; }; render(): JSX.Element; } //# sourceMappingURL=Badge.d.ts.map