import { RedBlackTreeStructure } from '../internals'; /** * Determines whether the input argument is an instance of a Collectable.js RedBlackTree structure. * * @export * @param {RedBlackTreeStructure} arg The input value to check * @returns {boolean} True if the input value is a RedBlackTree, otherwise false */ export declare function isRedBlackTree(arg: any): arg is RedBlackTreeStructure;