import type { Effect } from "./effect.js"; /** * Replicates the given effect `n` times. * * @ets_data_first replicate_ */ export declare function replicate(n: number, __trace?: string): (self: Effect) => Effect[]; /** * Replicates the given effect `n` times. */ export declare function replicate_(self: Effect, n: number): Effect[]; /** * Performs this effect the specified number of times, discarding the * results. */ export declare function replicateMUnit_(self: Effect, n: number): Effect; /** * Performs this effect the specified number of times, discarding the * results. */ export declare function replicateMUnit(n: number): (self: Effect) => Effect; //# sourceMappingURL=replicate.d.ts.map