/** * @description: 获取组件默认配置 * @param {type} compType: 组件类型 0:容器 1:通用 2:数据录入 3:数据展示 4:反馈 5:导航 6:布局 99:订阅组件 * @param {type} label: 组件中文名称 * @param {type} compName: 组件名称 * @param {type} initProps: 组件默认props */ declare const getDefaultConfigs: (compType: string | number, label?: string, compName?: string, initProps?: {}, compLib?: string) => { label: string; compName: string; type: string; compType: string | number; compLib: string; props: { name: string; }; style: {}; isContainer: boolean; isBusiObjContainer: boolean; }; export default getDefaultConfigs;