import { EventEmitter } from '@angular/core'; import { NoticeItem } from './notice-item'; export declare class NoticeIconComponent { data: NoticeItem[]; /** 图标上的消息总数 */ count: any; private _count; /** 图标不展示数字,只有一个小红点 */ dot: any; private _dot; /** 弹出卡片加载状态 */ loading: any; private _loading; select: EventEmitter; clear: EventEmitter; /** 手动控制Popover显示 */ popoverVisible: any; private _popoverVisible; popupVisibleChange: EventEmitter; onVisibleChange(result: boolean): void; onSelect(i: any): void; onClear(title: string): void; }