import type { AVLTreeOptions } from './avl-tree';
export type AVLTreeMultiMapOptions<K, V, R> = AVLTreeOptions<K, V, R> & {};
