import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; import { HashSet } from "@tsplus/stdlib/collections/HashSet/definition"; /** * Construct a new `HashSet` from a `Collection` of values * @tsplus static HashSet.Ops from * @tsplus getter Collection toHashSet * @tsplus getter List toHashSet * @tsplus location "@tsplus/stdlib/collections/HashSet/operations/from" */ export declare function from(elements: Collection): HashSet; //# sourceMappingURL=from.d.ts.map