import { PureComponent } from 'react'; interface BadgeTheme { readonly badge: string; } export interface BadgeProps { /** * An optional `className` to attach to the wrapper. */ readonly className?: string; /** * Badge's label. */ readonly label: string; /** * An optional css theme to be injected. */ readonly theme?: BadgeTheme; } declare class Badge extends PureComponent { render(): JSX.Element; } export default Badge;