import type { Effect } from "./effect.js"; /** * Provides some of the environment required to run this effect, * leaving the remainder `R0` and combining it automatically using spread. * * @ets_data_first provide_ */ export declare function provide(r: R, __trace?: string): (next: Effect) => Effect; /** * Provides some of the environment required to run this effect, * leaving the remainder `R0` and combining it automatically using spread. */ export declare function provide_(next: Effect, r: R, __trace?: string): Effect; //# sourceMappingURL=provide.d.ts.map