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