import React from "react"; import { FastField, Field, FieldProps } from "formik"; export declare type MapFormProps
= (props: Readonly<{ children?: React.ReactNode; }> & Readonly
& FieldProps) => P; export default function createFormComponent
(Component: React.ComponentType
, FieldType: typeof FastField | typeof Field, mapProps: MapFormProps
): React.ComponentType
;