import { RedBlackTree } from "@tsplus/stdlib/collections/RedBlackTree/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Returns the element at the specified index within the tree or `None` if the * specified index does not exist. * @tsplus static RedBlackTree.Aspects getAt * @tsplus pipeable RedBlackTree getAt * @tsplus location "@tsplus/stdlib/collections/RedBlackTree/getAt" */ export declare function getAt(index: number): (self: import("./definition").RedBlackTree) => import("../../data/Maybe").Maybe; //# sourceMappingURL=getAt.d.ts.map