import { IconSize } from '../../constants'; export type BadgeNotificationVariant = 'info' | 'warn' | 'error' | 'success'; export interface NotificationBadgeProps { /** Changes the type of the badge */ variant: BadgeNotificationVariant; /** Sets the size of the badge */ size: IconSize; /** Adds custom classes to the element */ className?: string; /** Sets the data-testid attribute. */ testId?: string; /** Sets hover state */ isHovered?: boolean; } declare const NotificationBadge: (props: NotificationBadgeProps) => React.JSX.Element; export default NotificationBadge;