import type { ElementProps, Props } from '@eviljs/react/props';
export declare function NotificationBadge(props: Props<NotificationBadgeProps>): React.JSX.Element;
export interface NotificationBadgeProps extends ElementProps<'span'> {
value: number | string;
}