import { FC } from 'react'; import './index.css'; interface BadgeProps { /** * @param count - The count of the badge */ count: number; /** * @param maxShowCount - The max count of the badge,when the count value than maxShowCount, show maxShowCount+unit */ maxShowCount?: number; /** * @param unit - The unit of the badge, default value '+' */ unit?: string; /** * @param minShowCount - The min count of the badge, when the count value less than minShowCount, not show badge */ minShowCount?: number; } export declare const FcrBadge: FC>; export {};