import { ImmutableMap } from "@tsplus/stdlib/collections/ImmutableMap/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Returns a `Some` containing the value associated with the specified key from * the map, or `None` if the key/value pair is not present within the map. * @tsplus static ImmutableMap.Aspects get * @tsplus pipeable ImmutableMap get * @tsplus location "@tsplus/stdlib/collections/ImmutableMap/get" */ export declare function get(key: K): (self: import("./definition").ImmutableMap) => import("../../data/Maybe").Maybe; //# sourceMappingURL=get.d.ts.map