import { HashSet } from "@tsplus/stdlib/collections/HashSet/definition";
/**
* Computes the set difference between this `HashSet` and the specified
* `Iterable`.
*
* **NOTE**: the hash and equal of the values in both the set and the iterable
* must be the same.
* @tsplus static HashSet.Aspects difference
* @tsplus pipeable HashSet difference
* @tsplus location "@tsplus/stdlib/collections/HashSet/operations/difference"
*/
export declare function difference(that: Iterable): (self: HashSet) => HashSet;
//# sourceMappingURL=difference.d.ts.map