/** * The function will override values in first object, * with the corresponding value if present in second object. */ declare const overrideValue: (obj1: any, obj2: any) => any; export default overrideValue;