/** * 判断 Group 组件是否为传统模式(LegacyMode) * @param item column 配置项 * @returns true 表示传统模式,false 表示灵活模式 */ export declare const isLegacyMode: (item: any) => boolean; /** * namesPath生产 [['list', 0, 'min'], ['list', 0, 'max']] => list_0_min-list_0_max * @param names name的集合 * @param prefixNamePath formList的name前缀 * @returns list_0_min-list_0_max */ export declare const namesPathTransform: ({ names, prefixNamePath, type, }: { names: any[]; prefixNamePath: any[]; type: string; }) => string; export declare const memoWith: (pre: any, next: any) => boolean;