import type { Effect } from "../../../../Effect/effect.js"; import * as Chunk from "../core.js"; /** * Filters this chunk by the specified effectful predicate, retaining all elements for * which the predicate evaluates to true. */ export declare function filterEffect_(self: Chunk.Chunk, f: (a: A) => Effect): Effect>; /** * Filters this chunk by the specified effectful predicate, retaining all elements for * which the predicate evaluates to true. * * @ets_data_first filterEffect_ */ export declare function filterEffect(f: (a: A) => Effect): (self: Chunk.Chunk) => Effect>; //# sourceMappingURL=filterEffect.d.ts.map