import React from 'react'; import { NoticeIconData } from '../../schema/system'; export interface NoticeIconTabProps { count?: number; name?: string; showClear?: boolean; showViewMore?: boolean; style?: React.CSSProperties; title: string; tabKey: string; onClick?: (item: NoticeIconData) => void; onClear?: () => void; emptyText?: string; clearText?: string; viewMoreText?: string; list: NoticeIconData[]; onViewMore?: (e: any) => void; } declare const NoticeList: React.FC; export default NoticeList;