import { STM } from "@effect/core/stm/STM/definition/base"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { TSet } from "@effect/core/stm/TSet/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Transactionally takes all matching values, or retries until there is at least one. * @tsplus static effect/core/stm/TSet.Aspects takeSomeSTM * @tsplus pipeable effect/core/stm/TSet takeSomeSTM * @tsplus location "@effect/core/stm/TSet/operations/takeSomeSTM" */ export declare function takeSomeSTM(pf: (a: A) => STM, B>): (self: TSet) => STM>; //# sourceMappingURL=takeSomeSTM.d.ts.map