/** Stable keyed entities whose collection identity is carried by the record key. */ export type EntityRegistry = never> = Readonly> & Readonly>; /** Keyed configuration/property values whose key is part of the value's meaning. */ export type ValueMap = Readonly>; export type SerializableSet = Readonly>>; /*** Validate the canonical JSON-safe representation for unordered string membership. */ export declare function isSerializableSet(value: unknown): value is SerializableSet; //# sourceMappingURL=collections.d.ts.map