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