import { ComponentClass } from 'react' interface DataInterface { key: any value: string } type PageOwnProps = { className?: string data: DataInterface[] active: any onClick?: any } declare const Index: ComponentClass export default Index