import type { Managed } from "../managed.js"; /** * Lifts a synchronous effect that does not throw exceptions into a * `Managed` with a release action. The acquire and * release actions will be performed uninterruptibly. */ export declare function makeSucceedWith(acquire: () => A, release: (a: A) => B, __trace?: string): Managed; //# sourceMappingURL=makeSucceedWith.d.ts.map