/** A hash table that maps a key to a list of elements not just a single. */ export declare class MultiMap extends Map { map(key: K, value: V): void; }