import { RedBlackTree } from "@tsplus/stdlib/collections/RedBlackTree/definition"; import { Ordering } from "@tsplus/stdlib/prelude/Ordering/definition"; /** * Insert a new item into the tree. * @tsplus static RedBlackTree.Aspects insert * @tsplus pipeable RedBlackTree insert * @tsplus location "@tsplus/stdlib/collections/RedBlackTree/insert" */ export declare function insert(key: K, value: V): (self: RedBlackTree) => RedBlackTree; //# sourceMappingURL=insert.d.ts.map