import { ComponentClass } from 'react' interface BargainInterface { bargainContent: { title: string }, // json bargainId: string, // 砍价活动id decorecPrice: number, // 装修报价 decorecPriceYuan: number, // 装修报价 money: any, // 配置总金额 moneyYuan: any, // 配置总金额 currentMoney: number, // 剩余未砍金额 currentMoneyYuan: number, // 剩余未砍金额 costMoneyYuan: number, // 砍了的金额 bargainTime: number, // 配置砍价次数 currentBargainTime: number, // 剩余砍价次数 endTime: any, // 截止日期 lastTime: any, // 剩余日期 claimTime: any, // 认领时间 createTime: any, // 创建时间 headimgurl: string, // 屋主头像 nickName: string, // 屋主昵称 ownerId: string, // 屋主id shopId: string, // 店铺id shopLogo: string, // 店铺logo shopName: string, // 店铺名称 updateTime: any // 更新时间 } type PageOwnProps = { className?: string item: BargainInterface onClick?: any } declare const Index: ComponentClass export default Index