import { TNode } from '../common';
export interface TdBadgeProps {
    color?: string;
    content?: string | TNode;
    count?: string | number | TNode;
    dot?: boolean;
    maxCount?: number;
    offset?: Array<string | number>;
    shape?: 'circle' | 'square' | 'bubble' | 'ribbon' | 'ribbon-right' | 'ribbon-left' | 'triangle-right' | 'triangle-left';
    showZero?: boolean;
    size?: 'medium' | 'large';
}
