import { FunctionComponent, FormEventHandler, PropsWithChildren } from 'react'; export interface FormProps { id: string; label: string; submitHandler?: FormEventHandler; } declare const Form: FunctionComponent>; export default Form;