import type { Effect } from "./effect.js"; /** * Makes the effect untraced, but passes it a restore function that can be used to restore * the inherited traceability from whatever region the effect is composed into. */ export declare function untracedMask(f: (restore: (self: Effect) => Effect) => Effect): Effect; /** * Makes the effect traced, but passes it a restore function that can be used to restore * the inherited traceability from whatever region the effect is composed into. */ export declare function tracedMask(f: (restore: (self: Effect) => Effect) => Effect): Effect; //# sourceMappingURL=traceMask.d.ts.map