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