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