declare const NULL: {}; export interface FastMap { size: number; empty: number; object: Record; has(key: string): boolean; get(key: string): T | undefined; set(key: string, value: T): FastMap; delete(key: string): FastMap; clear(): void; /** Use the test */ test(): ((value: T) => boolean) | undefined; /** Set test function */ test(fn: (value: T) => boolean): FastMap | undefined; clean(): void; } export default function fastmap(input?: Record): FastMap; export {}; //# sourceMappingURL=fastmap.d.ts.map