import { STM } from "@effect/core/stm/STM/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Replicates the given effect `n` times. * @tsplus static effect/core/stm/STM.Ops replicate * @tsplus location "@effect/core/stm/STM/operations/replicate" */ export declare function replicate(n: number, stm: STM): Chunk>; /** * Replicates the given effect `n` times. * @tsplus static effect/core/stm/STM.Aspects replicate * @tsplus pipeable effect/core/stm/STM replicate * @tsplus location "@effect/core/stm/STM/operations/replicate" */ export declare function replicateNow(n: number): (self: import("../definition").STM) => import("@tsplus/stdlib/collections/Chunk").Chunk>; //# sourceMappingURL=replicate.d.ts.map