import React__default from 'react'; interface IBadgeProps { /** 角标提示文本 */ title?: string; /** 角标颜色 */ color?: string; /** 角标大小 */ size?: "small" | "default" | "large"; /** 是否显示角标 */ show?: boolean; /** 角标样式 */ style?: React__default.CSSProperties; /** 角标类名 */ className?: string; /** 子元素 */ children?: React__default.ReactNode; /** 角标位置 */ position?: "top-right" | "top-left" | "bottom-right" | "bottom-left"; /** 触发方式 */ trigger?: "click" | "hover" | "focus"; } export { IBadgeProps };