import { Random } from "@effect/core/io/Random/definition"; import { Effect } from "@effect/core/io/Effect/definition"; import { Gen } from "@effect/core/testing/Gen/definition"; /** * Constructs a generator from a function that uses randomness. The returned * generator will not have any shrinking. * @tsplus static effect/core/testing/Gen.Ops fromRandom * @tsplus location "@effect/core/testing/Gen/operations/fromRandom" */ export declare function fromRandom(f: (random: Random) => Effect): Gen; //# sourceMappingURL=fromRandom.d.ts.map