/**
 * The base implementation of `isEqual` which supports partial comparisons
 * and tracks traversed objects.
 *
 * @private
 * @param value The value to compare.
 * @param other The other value to compare.
 * @param bitmask The bitmask flags.
 *  1 - Unordered comparison
 *  2 - Partial comparison
 * @param [customizer] The function to customize comparisons.
 * @param [stack] Tracks traversed `value` and `other` objects.
 * @returns Returns `true` if the values are equivalent, else `false`.
 */
declare function baseIsEqual(value: any, other: any, bitmask?: any, customizer?: any, stack?: any): boolean;
export default baseIsEqual;
