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