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