import { ComponentClass, SFC } from 'react'; import { Property } from './../Property'; export interface Widget { component: ComponentClass | SFC; mapSchemaPropertyToWidgetProps: (property: Property, fieldValue: any) => any; }