import { ComponentClass } from 'react' interface DataInterface { type: number, value: string } type PageOwnProps = { className?: string content: DataInterface[], title: string, onClickImage?: (event: any) => any, } declare const Index: ComponentClass export default Index