/** Deeply compares passed objects */
export declare function isEqual(obj1: any, obj2: any): boolean;
/**
 * Checks if all keys presented in the `mask` are equal to the `obj` keys
 * Note: array order is not taken into account and uses intersection strategy
 */
export declare function isSimilar(obj: any, mask: any, deep?: boolean): boolean;
