import { Effect } from "@effect/core/io/Effect/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Creates a stream from an effect producing values of type `A` until it fails * with `None`. * @tsplus static effect/core/stream/Stream.Ops repeatEffectMaybe * @tsplus location "@effect/core/stream/Stream/operations/repeatEffectMaybe" */ export declare function repeatEffectMaybe(effect: Effect, A>): Stream; //# sourceMappingURL=repeatEffectMaybe.d.ts.map