import { HashMap } from "@tsplus/stdlib/collections/HashMap/definition"; /** * Maps over the entries of the `HashMap` using the specified function. * @tsplus static HashMap.Aspects mapWithIndex * @tsplus pipeable HashMap mapWithIndex * @tsplus location "@tsplus/stdlib/collections/HashMap/operations/mapWithIndex" */ export declare function mapWithIndex(f: (k: K, v: V) => A): (self: HashMap) => HashMap; //# sourceMappingURL=mapWithIndex.d.ts.map