import { ComponentClass } from 'react' interface DataInterface { image: string name: string buildingSiteId?: string } interface ProcessConfigInterface { active?: any used: any process: string } type PageOwnProps = { className?: string data: DataInterface editable?: boolean children?: any onEdit?: any onImageClick?: any onMoreUserClick?: any processConfig: ProcessConfigInterface[] } declare const Index: ComponentClass export default Index