import { ComponentClass } from 'react' interface DataInterface { buildingSiteId: string name: string process: string image: string time?: string status?: number; // 0 | 1 | 2 | 发布 | 草稿 | 隐藏 getRedPacket?: number // 领取红包数量 isHasRedPacket?: number // 是否有红包 0 无 1 有 redPacket?: number // 红包总数 } type PageOwnProps = { className?: string item: DataInterface onClick?: any editable?: boolean onEdit?: any onPublic?: any onConfig?: any } declare const Index: ComponentClass export default Index