import type { Effect } from "../../../../Effect/effect.js"; import * as O from "../../../../Option/index.js"; import * as Chunk from "../core.js"; /** * Transforms all elements of the chunk for as long as the specified partial function is defined. */ export declare function collectWhileEffect_(self: Chunk.Chunk, f: (a: A) => O.Option>): Effect>; /** * Transforms all elements of the chunk for as long as the specified partial function is defined. * * @ets_data_first collectWhileEffect_ */ export declare function collectWhileEffect(f: (a: A) => O.Option>): (self: Chunk.Chunk) => Effect>; //# sourceMappingURL=collectWhileEffect.d.ts.map