import React from 'react'; export interface BadgeCountProps { /** * Number displayed in the badge. */ count: number; /** * If `count` is greater than `max` it will be clamped to `max`. * When clamped it will display `{max}+`. * * @example * * // outputs `99+` */ max?: number; } export type BadgeProps = BadgeCountProps & React.HTMLAttributes; export declare const Badge: React.FC;