import { ComponentClass } from 'react' type PageOwnProps = { className?: string shop: { shopLogo: string shopName: string }, state?: 'config' | 'send' | 'claimed' | 'finish' | 'claim' | string, // 状态 isOwner?: boolean // 是否屋主 app: 'wzs' | 'helper' redpacketId?: string // 红包id projectType?: 'case' | 'building' | string // 工地|案例 projectId?: string // 工地|案例 id projectName?: string // 工地|案例 名称 projectCover?: string // 工地|案例 封面 money?: string, // 已抢额度 totalMoney?: string, // 配置总额 avatar?: string // 屋主头像 userName?: string // 屋主名字 userId?: string // 屋主id djs?: { day: string hour: string minu: string sec: string } // 倒计时 onCoverClick?: any // 点击封面 onShopClick?: any // 自定义 blessing: string, // 祝福语 theme: string, // 主题 pageContent: string, // 红包封面展示文字 showNum: 0 | 1, // 展示红包个数 praiseTime: string, // 红包分数 type: 'complex' | 'easy', // 红包分数 } declare const Index: ComponentClass export default Index