import { Ord } from "@tsplus/stdlib/prelude/Ord/definition"; import { RedBlackTree } from "@tsplus/stdlib/collections/RedBlackTree/definition"; /** * Creates a new Red-Black Tree. * @tsplus static RedBlackTree.Ops __call * @tsplus static RedBlackTree.Ops make * @tsplus location "@tsplus/stdlib/collections/RedBlackTree/make" */ export declare function make(ord: Ord): (...entries: Entries) => RedBlackTree; //# sourceMappingURL=make.d.ts.map