/**
* Compare if two objects are the same, returns true or false
* @param type the comparison type
* @param objectA the first object
* @param objectB the second object to compare against
*/
export declarefunctionisSameObject<T>(objectA: T, objectB: T, deep?: boolean): boolean;