export declare class MapCache { private buildValue; private map; constructor(buildValue: (id: string) => T); get(id: string): T; }