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 greater than the * specified key. * @tsplus static RedBlackTree.Aspects gt * @tsplus pipeable RedBlackTree gt * @tsplus location "@tsplus/stdlib/collections/RedBlackTree/gt" */ export declare function gt(key: K, direction?: Direction): (self: import("@tsplus/stdlib/collections/RedBlackTree/definition").RedBlackTree) => RedBlackTreeIterable; //# sourceMappingURL=gt.d.ts.map