import { RedBlackTreeStructure } from '../internals'; /** * Retrieves the value of the first entry in the tree, or undefined if the tree is empty. * * @export * @template K The type of keys in the tree * @template V The type of values in the tree * @param {RedBlackTreeStructure} tree The input tree * @returns {(K|undefined)} The value of the first entry in the tree, or undefined if the tree is empty */ export declare function firstValue(tree: RedBlackTreeStructure): V | undefined;