import PropTypes from 'prop-types'; import React from 'react'; declare type ItemProps = { data: any; onClick: Function; onCardClick: Function; countDownStyle: any; reloadCart: Function; }; declare class OrderList extends React.Component { static contextTypes: { antLocale: PropTypes.Requireable; }; render(): JSX.Element; } export default OrderList;