import { Gen } from "@effect/core/testing/Gen/definition"; import { List } from "@tsplus/stdlib/collections/List/definition"; /** * A generator of collections of up to the specified size, where each * collection is generated by repeatedly applying a function to an initial * state. * @tsplus static effect/core/testing/Gen.Ops unfoldGenN * @tsplus location "@effect/core/testing/Gen/operations/unfoldGenN" */ export declare function unfoldGenN(n: number, s: S, f: (s: S) => Gen): Gen>; //# sourceMappingURL=unfoldGenN.d.ts.map