import type { Effect } from "./effect.js"; /** * Repeats this effect the specified number of times. * * @ets_data_first repeatN_ */ export declare function repeatN(n: number, __trace?: string): (self: Effect) => Effect; /** * Repeats this effect the specified number of times. */ export declare function repeatN_(self: Effect, n: number, __trace?: string): Effect; //# sourceMappingURL=repeatN.d.ts.map