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 by effectfully peeling off the "layers" of a value of type * `S`. * @tsplus static effect/core/stream/Stream.Ops unfoldEffect * @tsplus location "@effect/core/stream/Stream/operations/unfoldEffect" */ export declare function unfoldEffect(s: S, f: (s: S) => Effect>): Stream; //# sourceMappingURL=unfoldEffect.d.ts.map