export declare class FastMap { values: Record; size: number; constructor(); set(key: string, value: T): T; del(key: string): void; }