import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { TSet } from "@effect/core/stm/TSet/definition"; import { STM } from "@effect/core/stm/STM/definition/base"; /** * Takes the first matching value, or retries until there is one. * @tsplus static effect/core/stm/TSet.Aspects takeFirst * @tsplus pipeable effect/core/stm/TSet takeFirst * @tsplus location "@effect/core/stm/TSet/operations/takeFirst" */ export declare function takeFirst(pf: (a: A) => Maybe): (self: TSet) => STM; //# sourceMappingURL=takeFirst.d.ts.map