import { HashMap } from "@tsplus/stdlib/collections/HashMap/definition"; /** * Chains over the values of the `HashMap` using the specified function. * * **NOTE**: the hash and equal of both maps have to be the same. * @tsplus static HashMap.Aspects flatMap * @tsplus pipeable HashMap flatMap * @tsplus location "@tsplus/stdlib/collections/HashMap/operations/flatMap" */ export declare function flatMap(f: (v: V) => HashMap): (self: HashMap) => HashMap; //# sourceMappingURL=flatMap.d.ts.map