declare class Dictionary<TKey = any, TValue = any> extends Map<TKey, TValue> {
    obtain(key: TKey, createDefaultValueFn: () => TValue): TValue;
}
export { Dictionary };
