import { default as React } from 'react'; import { BadgeProps } from './badge'; type CounterBadgeProps = Omit; /** * The Alert badge is used to indicate a numeric value, commonly used for Cart items. */ declare const CounterBadge: React.ForwardRefExoticComponent>; export { CounterBadge }; export type { CounterBadgeProps };