import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; import { HashSet } from "@tsplus/stdlib/collections/HashSet/definition"; /** * Chains over the values of the `HashSet` using the specified function. * @tsplus static HashSet.Aspects flatMap * @tsplus pipeable HashSet flatMap * @tsplus location "@tsplus/stdlib/collections/HashSet/operations/flatMap" */ export declare function flatMap(f: (a: A) => Collection): (self: HashSet) => HashSet; //# sourceMappingURL=flatMap.d.ts.map