import type { BSTNodeComparisonCallbackType, BSTNodeValueComparisonCallbackType } from "../../../Types";
/**
 * Compares two BST nodes based on their IDs.
 */
export declare const CompareNodes: BSTNodeComparisonCallbackType;
/**
 * Compares a BST node with a given value based on the node's ID.
 */
export declare const CompareNodeWithValue: BSTNodeValueComparisonCallbackType;
