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