import { ComponentClass } from 'react' interface DataInterface { commentId: any, name: any, isPraise: any, headimgurl: any, content: any, parentComment: any, createDateFormat: any, opposeNum: any, supportNum: any, } type PageOwnProps = { className?: string onClick?: any onReply?: any onVote?: any comment: DataInterface } declare const Index: ComponentClass export default Index