import { HashMap } from "@tsplus/stdlib/collections/HashMap/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Safely lookup the value for the specified key in the `HashMap` using the * internal hashing function. * @tsplus pipeable-index HashMap * @tsplus static HashMap.Aspects get * @tsplus pipeable HashMap get * @tsplus location "@tsplus/stdlib/collections/HashMap/operations/get" */ export declare function get(key: K): (self: HashMap) => Maybe; //# sourceMappingURL=get.d.ts.map