/// <reference types="react" />
export interface CnBadgeProps extends React.HTMLAttributes<HTMLDivElement> {
    /**
     * 当count为0时，是否显示count `v0.12.34+`
     * @default false
     * @since 0.12.34
     */
    showZero?: boolean;
    /**
     * 展示的数字，可以为文字，大于 `overflowCount` 时显示为 `{overflowCount}+`，为 0 时隐藏
     */
    count?: number | string;
    /**
     * 展示封顶的数字值
     */
    overflowCount?: number;
    /**
     * 自定义展示内容
     */
    content?: React.ReactNode | string;
    /**
     * 形状
     */
    shape?: 'dot' | 'normal' | 'inline' | 'inline-secondary';
}
