import PropTypes from 'prop-types'; import React from 'react'; declare type ItemProps = { data: any; }; export default class ProductListStore extends React.Component { static contextTypes: { antLocale: PropTypes.Requireable; }; constructor(props: any); render(): JSX.Element; } export {};