import { RedBlackTreeStructure } from '../internals'; /** * Retrieves the value of the entry at the specified index (ordinal) in the tree. If a negative number is specified for * the index, the number is treated as a backtracking offset, with -1 matching the last element in the list, -2 matching * the second-last, and so forth. * * @export * @template K The type of keys in the tree * @template V The type of values in the tree * @param {number} index The numeric index of the entry to retrieve (A negative number counts as a backtracking offset from the end of the tree) * @param {RedBlackTreeStructure} tree The input tree * @returns {(V|undefined)} The value at the specified index, or undefined if the index was out of range */ export declare function valueAt(index: number, tree: RedBlackTreeStructure): V | undefined;