/**
 * Shallow equal function to compare two objects
 * @param obj1 - The first object to compare
 * @param obj2 - The second object to compare
 * @returns True if the objects are shallowly equal, false otherwise
 */
export declare function shallowEqual(obj1: any, obj2: any): boolean;
