import * as React from 'react'; import { BadgeProps as AntdBadgeProps } from 'antd/es/badge'; export interface BadgeProps extends Omit { /** * The content to display in the badge */ count?: React.ReactNode; /** * Max count to show */ overflowCount?: number; /** * Whether to show zero count */ showZero?: boolean; /** * Custom style for the badge */ style?: React.CSSProperties; /** * Custom color for the badge */ color?: string; /** * Badge size */ size?: 'default' | 'small'; /** * Badge status */ status?: 'success' | 'processing' | 'default' | 'error' | 'warning'; /** * Status text */ text?: string; /** * Custom dot color */ dot?: boolean; /** * Offset of the badge dot */ offset?: [number, number]; /** * Whether to display a red dot instead of count */ children?: React.ReactNode; } declare const Badge: React.FC; export default Badge;