export declare function getFromMapOrThrow(map: Map | WeakMap, key: K): V; export declare function getFromMapOrCreate(map: Map | WeakMap, index: MapIndex, creator: () => MapValue, ifWasThere?: (value: MapValue) => void): MapValue;