import { RedBlackTreeEntry, RedBlackTreeStructure } from '../internals'; /** * Retrieves 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 {(RedBlackTreeEntry|undefined)} The first entry in the tree, or undefined if the tree is empty */ export declare function first(tree: RedBlackTreeStructure): RedBlackTreeEntry | undefined;