import type { Either } from "../../Either"; import type { Option } from "../../Option"; import type { FiberId } from "../Fiber/FiberId"; import type { Cause } from "./Cause"; import type { Exit } from "./model"; export declare const succeed: (value: A) => Exit; export declare const failure: (cause: Cause) => Exit; export declare const fail: (e: E) => Exit; export declare const interrupt: (id: FiberId) => Exit; export declare const die: (error: unknown) => Exit; export declare const fromEither: (e: Either) => Exit; export declare const fromOption_: (fa: Option, onNone: () => E) => Exit; export declare const fromOption: (onNone: () => E) => (fa: Option) => Exit; //# sourceMappingURL=constructors.d.ts.map