import type { BSTOptions } from './bst';
export type RBTNColor = 'RED' | 'BLACK';
export type RedBlackTreeOptions<K, V, R> = BSTOptions<K, V, R> & {};
