import { type ComponentType } from 'react'; export type FormFieldComponent = ComponentType<{ value: any; onChange: (value: any) => void; [key: string]: any; }>; export type ComponentMap = { [key: string]: FormFieldComponent; }; export type FormField = { name: string; type: keyof T; label?: string; required?: boolean; [key: string]: any; }; //# sourceMappingURL=types.d.ts.map