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