import { Component } from 'react'; export interface ProductItemProps { prefixCls: string; data: any; btnHtml: any; onDetailClick: Function; onBtnClick: Function; } export default class ProductCardChat extends Component { static defaultProps: { prefixCls: string; }; handleBtn: (e: any, data: any) => void; render(): JSX.Element; }