/** * * @param {*} arr * @param {*} parCode 有多个数组节点时,需要记录所属父节点,用于限制跨父节点选择行为 * @returns 过滤出简单类型节点 */ export declare const filterSimpleType: (arr: any, parCode?: any, parName?: any) => any; export declare const generateArrayNode: (attrs: any, parentCode?: any, parentName?: any) => any[]; export declare const orderFields: (checkedValues: any, fields: any) => any; export declare const initOrder: (preList: any, valueList: any, flag?: boolean) => any[]; export declare const EXPORT_TYPE: { field: { label: string; tips: string; }; custom: { label: string; tips: string; }; temp: { label: string; tips: string; }; }; export declare const CUSTOM_SETTING_FIELD: ({ label: string; key: string; type: string; } | { label: string; key: string; type?: undefined; })[];