/** * Merge two maps * @param map1 - The first map to be merged * @param map2 - The second map to be merged * @return A map with the entries of both maps */ export declare const mergeMaps: (map1: Map, map2: Map) => Map;