export declare class TwoWayMap<K, V> {
    private readonly map;
    private readonly reverseMap;
    constructor(map: Map<K, V>);
    get(key: K): V | undefined;
    getByValue(value: V): K | undefined;
    values(): IterableIterator<V>;
}
