import type * as T from "../../../../Effect/index.js"; import type * as C from "../core.js"; /** * Drops all elements of the stream for as long as the specified predicate * produces an effect that evalutates to `true` * * @see `dropWhile` */ export declare function dropWhileEffect_(self: C.Stream, f: (a: A) => T.Effect): C.Stream; /** * Drops all elements of the stream for as long as the specified predicate * produces an effect that evalutates to `true` * * @see `dropWhile` * * @ets_data_first dropWhileEffect_ */ export declare function dropWhileEffect(f: (a: A) => T.Effect): (self: C.Stream) => C.Stream; //# sourceMappingURL=dropWhileEffect.d.ts.map