export declare class HasMapStore { protected readonly creater: (key: string) => T; protected map: Map; constructor(creater: (key: string) => T); protected get(key: string): T; protected has(key: string): boolean; }