/// import React from 'react'; import NoticeBarProps from './PropsType'; export default class NoticeBar extends React.Component { static defaultProps: { prefixCls: string; mode: string; icon: JSX.Element; onClick(): void; }; constructor(props: any); onClick: () => void; render(): JSX.Element | null; }