import * as T from "../../../../Effect/index.js"; import type * as C from "../core.js"; /** * Takes all elements of the stream until the specified effectual predicate * evaluates to `true`. */ export declare function takeUntilEffect_(self: C.Stream, f: (a: A) => T.Effect): C.Stream; /** * Takes all elements of the stream until the specified effectual predicate * evaluates to `true`. * * @ets_data_first takeUntilEffect_ */ export declare function takeUntilEffect(f: (a: A) => T.Effect): (self: C.Stream) => C.Stream; //# sourceMappingURL=takeUntilEffect.d.ts.map