interface Dictionary { [key: string]: T; } /** * 迭代函数-根据需要处理的字段,输出字段值的级联; value1-value2-value3 * * @category Utils */ export declare const createNewKeyIteratee: (needDuplicateFields: string[]) => (data: Dictionary) => string; export {};