import type { Cause } from "../Cause/cause.js"; import type { Effect, RIO } from "./effect.js"; /** * When this effect succeeds with a cause, then this method returns a new * effect that either fails with the cause that this effect succeeded with, * or succeeds with unit, depending on whether the cause is empty. * * This operation is the opposite of `cause`. */ export declare function uncause(effect: RIO>, __trace?: string): Effect; //# sourceMappingURL=uncause.d.ts.map