import * as React from 'react'; import './index.scss'; interface ArticleSliderProps { type?: 'string'; articleArr?: 'array'; limit?: 'number'; number?: 'number'; } export default class ArticleSlider extends React.PureComponent { state: { dataArr: any[]; type: string; style: {}; dotsRender: { dotsRender: (index: any, current: any) => any; }; }; props: any; setState: any; constructor(props: any); componentDidMount(): void; articleListAuthorityPageRequest: (nextProps: any) => void; componentWillReceiveProps(nextProps: any): void; render(): JSX.Element; } export {};