import { PureComponent } from 'react'; export declare const SIZES: ("s" | "m")[]; declare type NotificationBadgeType = { children?: any; className?: any; size?: string; color?: string; }; export declare class NotificationBadge extends PureComponent { static defaultProps: { size: string; color: string; }; render(): JSX.Element; } export {};