/// <reference types="react" />
export interface Props {
    size?: string;
    hasBadge?: boolean;
    badgeColor?: string;
}
export declare const NotificationBadge: ({ size, hasBadge, badgeColor }: Props) => JSX.Element;
