interface IMap { get(key: K): V | undefined; set(key: K, value: V): this; } /** * Get or set map value. */ export declare const defaultMap: (map: IMap, key: K, def: V | (() => V)) => V; export {}; //# sourceMappingURL=map.d.ts.map