import { TNode } from '../common'; export interface TdBadgeProps { color?: string; content?: string | TNode; count?: string | number | TNode; default?: string | TNode; dot?: boolean; maxCount?: number; offset?: Array; shape?: 'circle' | 'round'; showZero?: boolean; size?: 'small' | 'medium'; }