import type { Cause } from "../Cause/cause.js"; import type { Promise } from "./promise.js"; /** * Halts the promise with the specified cause, which will be propagated to all * fibers waiting on the value of the promise. */ export declare function halt_(promise: Promise, e: Cause): import("../Effect/effect.js").UIO; /** * Halts the promise with the specified cause, which will be propagated to all * fibers waiting on the value of the promise. */ export declare function halt(e: Cause): (promise: Promise) => import("../Effect/effect.js").UIO; //# sourceMappingURL=halt.d.ts.map