import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Creates a stream by peeling off the "layers" of a value of type `S`. * @tsplus static effect/core/stream/Stream.Ops unfold * @tsplus location "@effect/core/stream/Stream/operations/unfold" */ export declare function unfold(s: S, f: (s: S) => Maybe): Stream; //# sourceMappingURL=unfold.d.ts.map