/**
 * @description
 * Checks if the provided value is a `Set` object.
 *
 * @param {unknown} value The value to check
 * @returns {boolean} `true` if the value is a `Set`, `false` otherwise
 */
declare function isSet(value: unknown): value is Set<unknown>;

export { isSet as default, isSet };
