import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; import { Effect } from "@effect/core/io/Effect/definition"; /** * Determines whether any element of the `Collection` satisfies the effectual * predicate `f`, working sequentially. * @tsplus static effect/core/io/Effect.Ops exists * @tsplus location "@effect/core/io/Effect/operations/exists" */ export declare function exists(as: Collection, f: (a: A) => Effect): Effect; //# sourceMappingURL=exists.d.ts.map