import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { HashMap } from "@tsplus/stdlib/collections/HashMap/definition"; /** * Maps over the entries of the `HashMap` using the specified partial function * and filters out `None` values. * @tsplus static HashMap.Aspects collectWithIndex * @tsplus pipeable HashMap collectWithIndex * @tsplus location "@tsplus/stdlib/collections/HashMap/operations/collectWithIndex" */ export declare function collectWithIndex(f: (k: K, a: A) => Maybe): (self: HashMap) => HashMap; //# sourceMappingURL=collectWithIndex.d.ts.map