/** * Deeply merges two given objects with the right one * having a priority during property assignment. */ declare function mergeRight(left: Record, right: Record): Record; export { mergeRight };