import { Tree } from "@tsplus/stdlib/collections/Tree/definition"; /** * Iterate over the Tree in breadth-first order, applying `f` * @tsplus static Tree.Aspects forEach * @tsplus pipeable Tree forEach * @tsplus location "@tsplus/stdlib/collections/Tree/forEach" */ export declare function forEach(f: (a: A) => U): (self: Tree) => void; //# sourceMappingURL=forEach.d.ts.map