import React from 'react'; /** * @title: 递归循环表单数据 * @Author: hongbing.wang * @Date: 2024-08-20 13:21 */ declare const CustomFormItem: ({ formItemList, level, onChange, }: { formItemList: any[]; level?: number | undefined; onChange?: ((...agrn: unknown[]) => unknown) | undefined; }) => React.JSX.Element; export default CustomFormItem; declare type helpMappingType = { [key: string]: { getCommName(commConfig: T, name: string[]): T; getCommDefaultVal: (commConfig: any) => { [key: string]: string; }; }; }; export declare const helpMapping: helpMappingType;