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"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Takes all matching values, or retries until there is at least one. * @tsplus static effect/core/stm/TMap.Aspects takeSome * @tsplus pipeable effect/core/stm/TMap takeSome * @tsplus location "@effect/core/stm/TMap/operations/takeSome" */ export declare function takeSome(pf: (kv: readonly [K, V]) => Maybe): (self: TMap) => STM>; //# sourceMappingURL=takeSome.d.ts.map