import { ProvidersService } from 'fccore2'; import { FcinputComponent } from '../fcinput'; /** * fc-badge徽标 * * 图标右上角的圆形徽标数字。 * * 一般出现在通知图标或头像的右上角,用于显示需要处理的消息条数,通过醒目视觉形式吸引用户处理。 * */ export declare class FcbadgeComponent extends FcinputComponent { provider: ProvidersService; /** 提示标题*/ fcToolTip: string; /** 提示标题位置*/ fcPosition: string; /** 展示封顶的数字*/ fcOverflowCount: string; _overflowCount: number; /** 徽标数字*/ fcCount: string; _count: number[]; /** 状态值颜色区别*/ fcStatus: string; /** 文本内容头像*/ fcText: string; /**图标*/ fcIcon: string; /**小红点*/ fcDot: string; _dot: boolean; /**提示面板*/ fcContent: string; fcFontSize: string; constructor(provider: ProvidersService); _afterParentInit(): void; }