import type { RedBlackTreeOptions } from './red-black-tree';

export type TreeMultiMapOptions<K, V, R> = RedBlackTreeOptions<K, V, R> & {}
