import * as T from "../../Task/_core"; import type { Task } from "../../Task/model"; import type { XPromise } from "../model"; /** * Returns a task that keeps or breaks a promise based on the result of * this effect. Synchronizes interruption, so if this effect is interrupted, * the specified promise will be interrupted, too. */ export declare const to: (p: XPromise) => (effect: T.Task) => T.Task; //# sourceMappingURL=to.d.ts.map