import { default as React } from 'react'; import { BadgeProps } from './badge'; type AlertBadgeProps = Omit; /** * The Alert badge is used to indicate a status, like new notifications or an items availability. */ declare const AlertBadge: React.ForwardRefExoticComponent>; export { AlertBadge }; export type { AlertBadgeProps };