import { RedBlackTree } from "@tsplus/stdlib/collections/RedBlackTree/definition"; import type { Direction, RedBlackTreeIterable } from "@tsplus/stdlib/collections/RedBlackTree/definition"; /** * Returns an iterator that traverse entries with keys less than the specified * key. * @tsplus static RedBlackTree.Aspects lt * @tsplus pipeable RedBlackTree lt * @tsplus location "@tsplus/stdlib/collections/RedBlackTree/lt" */ export declare function lt(key: K, direction?: Direction): (self: import("@tsplus/stdlib/collections/RedBlackTree/definition").RedBlackTree) => RedBlackTreeIterable; //# sourceMappingURL=lt.d.ts.map