import React from 'react'; import './index.css'; /** * @title: 自定义组件设置 * @description: 自定义组件设置 * @param {any} commConfig 当前组件配置 * @param {string} name 上游name(用于嵌套 xxx:{yyy:''}) * @return {*} * @Author: hongbing.wang * @Date: 2024-08-20 11:10 */ export declare const getCommName: (commConfig: any, name: string[]) => any; /** * @title: 自定义组件结果设置 * @description: 自定义组件结果设置 * @param {any} commConfig 当前组件配置 * @return {*} * @Author: hongbing.wang * @Date: 2024-08-20 11:11 */ export declare const getCommDefaultVal: (commConfig: any) => { [x: number]: any; }; /** * @title: 自定义表单 * @description: 若干 antd 组件不能满足需求 则可以创建自定义组件 * @Author: hongbing.wang * @Date: 2024-08-20 13:22 */ declare const _default: (props: any) => React.JSX.Element; export default _default;