export default SetCache; /** * * Creates an array cache object to store unique values. * * @private * @constructor * @param {Array} [values] The values to cache. */ declare function SetCache(values?: any[] | undefined): void; declare class SetCache { /** * * Creates an array cache object to store unique values. * * @private * @constructor * @param {Array} [values] The values to cache. */ private constructor(); __data__: MapCache; add: typeof setCacheAdd; push: typeof setCacheAdd; has: typeof setCacheHas; } import MapCache from "./_MapCache.js"; import setCacheAdd from "./_setCacheAdd.js"; import setCacheHas from "./_setCacheHas.js";