import PropTypes from 'prop-types'; import { Component } from 'react'; interface PointProps { dialogModal: boolean; prefixCls?: string; closeDialog: any; list: any; pointNum: number; onSelectedItem: any; onRuleClick: any; } /** * 积分底部弹窗公共组件 */ export default class PointDialog extends Component { static contextTypes: { antLocale: PropTypes.Requireable; }; static defaultProps: { prefixCls: string; dialogModal: boolean; list: never[]; type: string; }; state: { list: any; }; onChange: (point: any) => void; onRuleClick: () => void; componentWillReceiveProps(nextProps: any): void; render(): JSX.Element; } export {};