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"; /** * Finds all the key/value pairs matching the specified predicate, and uses * the provided function to extract values out them. * @tsplus static effect/core/stm/TMap.Aspects findAll * @tsplus pipeable effect/core/stm/TMap findAll * @tsplus location "@effect/core/stm/TMap/operations/findAll" */ export declare function findAll(pf: (kv: readonly [K, V]) => Maybe): (self: TMap) => STM>; //# sourceMappingURL=findAll.d.ts.map