/** Represents a map with `unknown` key and value. Use case: You want a type that all maps can be assigned to, but you don't care about the value. @example ``` import type {UnknownMap} from 'type-fest'; type IsMap = T extends UnknownMap ? true : false; type A = IsMap>; //=> true type B = IsMap>; //=> true type C = IsMap; //=> false ``` @category Type */ export type UnknownMap = ReadonlyMap; export {};