import type { AnyObject } from "../../types";
/**
 * Compares objects to determine if they are identical
 * @param {object} object1
 * @param {object} object2
 * @param {array} excludedKeys - name of properties not to be compared
 * @returns {boolean} areIdentical
 */
export declare const areIdentical: (object1: AnyObject, object2: AnyObject, excludedKeys?: string[]) => boolean;
