import * as React from 'react'; export { ScrollNumberProps } from './ScrollNumber'; export interface BadgeProps { /** Number to show in badge */ count?: number | string | null; showZero?: boolean; /** Max count to show */ overflowCount?: number; overflowType?: 'plus' | 'ellipsis'; /** whether to show red dot without number */ dot?: boolean; style?: React.CSSProperties; prefixCls?: string; scrollNumberPrefixCls?: string; className?: string; status?: 'success' | 'processing' | 'default' | 'error' | 'warning'; text?: string; offset?: [number | string, number | string]; title?: string; } declare const Badge: React.FC; export default Badge;