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