import { Component } from 'react'; export interface ProductItemProps { prefixCls?: string; imgUrl?: string; productName?: string; salesPrice?: string; productClick?: Function; btnName?: string; } export default class ProductCard extends Component { static defaultProps: { prefixCls: string; productName: string; salesPrice: string; btnName: string; imgUrl: string; productClick(item: any): void; }; render(): JSX.Element; }