export declare class HashMap { private _data; private _length; readonly length: number; readonly isEmpty: boolean; constructor(); has(key: string): boolean; remove(key: string): void; set(key: string, value: any): void; get(key: string): T | undefined; clear(): void; }