import { Tree } from "@tsplus/stdlib/collections/Tree/definition"; /** * Convert a `Tree` into a `Tree` using a function from `Tree => B` * applied to each node in the Tree. * @tsplus static Tree.Aspects extend * @tsplus pipeable Tree extend * @tsplus location "@tsplus/stdlib/collections/Tree/extend" */ export declare function extend(f: (wa: Tree) => B): (self: Tree) => Tree; //# sourceMappingURL=extend.d.ts.map