import type { BSTOptions } from './bst'; export type RBTNColor = 'RED' | 'BLACK'; export type RedBlackTreeOptions = BSTOptions & {};