import * as React from 'react'; import { Skin } from './constants'; export declare type Content = string | number | React.ReactElement; export interface CounterBadgeProps { /** Skin of the badge */ skin?: Skin; /** Content of the badge */ children?: Content; } export declare class CounterBadge extends React.PureComponent { static displayName: string; static defaultProps: CounterBadgeProps; private readonly getContent; render(): JSX.Element; }