import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface BadgeCountProps extends ComposableProps<'span'> { /** Count value */ count?: number; /** Max count before showing + suffix */ overflowCount?: number; /** Show zero count */ showZero?: boolean; } /** * BadgeCount - Numeric count indicator * * Displays a count badge, typically for notifications or item quantities. * * @public * * @example * ```tsx * * * * * // Shows "99+" when count > 99 * * ``` */ export declare const BadgeCount: React.ForwardRefExoticComponent>; //# sourceMappingURL=BadgeCount.d.ts.map