import { ComponentClass } from 'react' type PageOwnProps = { // 样式 className?: string // 属性 thumb?: any // 左侧图片 title?: string // 标题 note?: string // 标题下面文字 extThumb?: any // 右侧图片 extraText?: any // 右侧文字 topLine?: boolean // 顶部横线 noBorder?: boolean // 没有边框 disabled?: boolean // 禁用 // 事件 onClick?: any // 替换 renderThumb?: any // 左侧图片 renderTitle?: any // 替换标题 renderNote?: any // 标题下面文字 renderExtThumb?: any // 右侧图片 renderExtraText?: any // 右侧文字 } declare const Index: ComponentClass export default Index