/**
 * @author imjano
 * @param obj1
 * @param obj2
 * @returns boolean
 * @description This function compare deeply 2 objects
 * returns true if the objects are identical
 */
export default function compareObjects(obj1: any, obj2: any): boolean;
