type GenericObject = {
    [key: string]: any;
};
/**
 * Utility function to test, if two objects have the exactly same properties
 *
 * @param x First object
 * @param y Second object
 * @returns Boolean
 */
export declare const areObjectsDeepEquals: (x: GenericObject | null, y: GenericObject | null) => boolean;
export {};
