import type { Scope } from "../Scope/index.js"; import type { Effect } from "./effect.js"; /** * Returns a new effect whose scope will be extended by the specified scope. * This means any finalizers associated with the effect will not be executed * until the specified scope is closed. * * @ets_data_first in_ */ declare function _in(scope: Scope, __trace?: string): (self: Effect) => Effect; /** * Returns a new effect whose scope will be extended by the specified scope. * This means any finalizers associated with the effect will not be executed * until the specified scope is closed. */ export declare function in_(self: Effect, scope: Scope, __trace?: string): Effect; export { _in as in }; //# sourceMappingURL=in.d.ts.map