import { RedBlackTree } from "@tsplus/stdlib/collections/RedBlackTree/definition"; /** * Visit each node of the tree in order with key lower than max and greater * than or equal to min. * @tsplus static RedBlackTree.Aspects forEachBetween * @tsplus pipeable RedBlackTree forEachBetween * @tsplus location "@tsplus/stdlib/collections/RedBlackTree/forEachBetween" */ export declare function forEachBetween(min: K, max: K, visit: (key: K, value: V) => void): (self: RedBlackTree) => void; //# sourceMappingURL=forEachBetween.d.ts.map