import { BSTOptions } from './bst';
export type AVLTreeOptions<K, V, R> = BSTOptions<K, V, R> & {};
