import * as React from 'react'; import './index.scss'; interface ArticleProps { articleArr?: 'array'; type?: 'string'; limit?: 'number'; style?: 'object'; } export default class Article extends React.PureComponent { state: { dataArr: any[]; type: string; style: {}; arr: any[]; height: string; width: string; }; props: any; setState: any; constructor(props: any); componentDidMount(): void; articleListPageRequest: (nextProps: any) => void; getArr: (num: any, arrLength: any, length: any) => void; componentWillReceiveProps(nextProps: any): void; setArr: (nextProps: any) => void; render(): JSX.Element; } export {};