import { HashMap } from "@tsplus/stdlib/collections/HashMap/definition"; /** * Updates the value of the specified key within the `HashMap` if it exists. * @tsplus static HashMap.Aspects update * @tsplus pipeable HashMap update * @tsplus location "@tsplus/stdlib/collections/HashMap/operations/update" */ export declare function update(key: K, f: (v: V) => V): (self: HashMap) => HashMap; //# sourceMappingURL=update.d.ts.map