import React from 'react'; import './index.scss'; interface DataProps { /** * 内容 */ content?: string; /** * 发布时间 */ releaseTime?: string; /** * 是否置顶 */ isTop?: number; } export interface NoticeBarProps { /** * 数据 */ dataList?: DataProps[]; /** * 点击事件 * @param e */ onClick?: (e: any) => void; /** * 子节点 */ children: React.ReactChild; /** * 左侧图标 */ icon: string; /** * 点击事件 * @param e */ handleMoreClick?: (e: any) => void; /** * 更多 */ moreText: string; } declare const NoticeBar: React.FC; export default NoticeBar;