import { RedBlackTreeStructure } from '../internals'; /** * Determines whether two trees have equivalent sets of keys and values. Though order of insertion can affect the * internal structure of a red black tree, only the actual set of entries and their ordinal positions are considered. * * @export * @template K The type of keys in the tree * @template V The type of values in the tree * @param {RedBlackTreeStructure} tree The input tree * @param {RedBlackTreeStructure} other Another tree to compare entries with * @returns {boolean} True if both trees are of the same size and have equivalent sets of keys and values for each entry * at corresponding indices in each tree, otherwise false. */ export declare function isEqual(tree: RedBlackTreeStructure, other: RedBlackTreeStructure): boolean;