import { Field, Form, FormConfigs, JSONObject, Panel } from './types'; import { RegisterOptions } from './FormConfigsProvider'; export declare const mergePanels: (currentPanels: JSONObject, newPanels: JSONObject) => JSONObject; export declare const mergeFields: (currentFields: JSONObject, newFields: JSONObject) => JSONObject; export declare const addModuleForms: (forms: FormConfigs, _moduleForms: FormConfigs, registerOptions?: RegisterOptions) => FormConfigs; export declare const fetchOptionsOfFormKey: (forms: FormConfigs, key: string) => Form;