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 a value of type `A` or an empty * `Stream`. * @tsplus static effect/core/stream/Stream.Ops fromEffectMaybe * @tsplus location "@effect/core/stream/Stream/operations/fromEffectMaybe" */ export declare function fromEffectMaybe(effect: Effect, A>): Stream; //# sourceMappingURL=fromEffectMaybe.d.ts.map