type MergeRecord = Record; /** * Recursively merges sources into the retained target used by Taro's template generator. * * The target and its existing nested records are intentionally mutated because Taro retains their references. Matching arrays * are concatenated, matching records are merged recursively, and all other source values replace their target values. */ export declare function recursiveMerge(target: T, ...sources: ReadonlyArray): T; export {};