import * as O from "../Option/index.js"; import type { Effect } from "./effect.js"; /** * Requires that the given `Effect>` contain a value. If there is no * value, then the specified error will be raised. * * @ets_data_first require_ */ declare function _require(error: () => E, __trace?: string): (io: Effect>) => Effect; /** * Requires that the given `Effect>` contain a value. If there is no * value, then the specified error will be raised. */ export declare function require_(io: Effect>, error: () => E, __trace?: string): Effect; export { _require as require }; //# sourceMappingURL=require.d.ts.map