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