import * as React from 'react'; import 'swiper/swiper.scss'; import './index.scss'; export interface NoticeProps { style?: 'object'; limit?: 'number'; } export default class Notice extends React.PureComponent { state: { noticeData: any[]; }; props: any; setState: any; constructor(props: any); componentDidMount(): void; componentWillReceiveProps(nextProps: any): void; noticeListAuthorityPageRequest: (nextProps: any) => void; render(): JSX.Element; }