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