import { BaseMap } from './base-map'; import { SupportedKeyTypes } from '../interfaces'; /** * Implementation of {@link BaseMap} that uses standard `Subject` based `Observables` */ export declare class ObservableMap extends BaseMap { /** * Construct a new instance */ constructor(); }