import { EventEmitter } from '@angular/core';
import { NoticeItem } from './interface';
export declare class NoticeIconComponent {
    data: NoticeItem[];
    /** 图标上的消息总数 */
    count: any;
    private _count;
    /** 弹出卡片加载状态 */
    loading: any;
    private _loading;
    select: EventEmitter<any>;
    clear: EventEmitter<string>;
    /** 手动控制Popover显示 */
    popoverVisible: any;
    private _popoverVisible;
    popoverVisibleChange: EventEmitter<boolean>;
    onVisibleChange(result: boolean): void;
    onSelect(i: any): void;
    onClear(title: string): void;
}
