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

export { mergeRight };
