import type { Effect } from "../../../../Effect/effect.js"; import * as Chunk from "../core.js"; /** * Drops all elements so long as the predicate returns true. */ export declare function dropWhileEffect_(self: Chunk.Chunk, f: (a: A) => Effect): Effect>; /** * Drops all elements so long as the predicate returns true. * * @ets_data_first dropWhileEffect_ */ export declare function dropWhileEffect(f: (a: A) => Effect): (self: Chunk.Chunk) => Effect>; //# sourceMappingURL=dropWhileEffect.d.ts.map