import * as React from 'react'; import { FieldRenderProps } from 'react-final-form'; function FormText1({ input }: FieldRenderProps) { // renders OK because of the used generic return ; } function FormText2({ input }: FieldRenderProps) { // doesnt type check because we can't pass event handlers for `HTMLInputElement` to a ; }