import { ID } from './tool-kit.util'; export interface HashMap { [key: string]: T; } export declare type Entries = (readonly [K, T])[]; export declare type EntityMap = Map;