import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { TMap } from "@effect/core/stm/TMap/definition"; import { STM } from "@effect/core/stm/STM/definition/base"; /** * Finds the key/value pair matching the specified predicate, and uses the * provided function to extract a value out of it. * @tsplus static effect/core/stm/TMap.Aspects find * @tsplus pipeable effect/core/stm/TMap find * @tsplus location "@effect/core/stm/TMap/operations/find" */ export declare function find(pf: (kv: readonly [K, V]) => Maybe): (self: TMap) => STM>; //# sourceMappingURL=find.d.ts.map