import type { Cause } from "./model"; /** * ```haskell * alt_ :: Alt f => (f a, (() -> f a)) -> f a * ``` * * @category Alt * @since 1.0.0 */ export declare const alt_: (fa: Cause, that: () => Cause) => Cause; /** * ```haskell * alt :: Alt f => (() -> f a) -> fa -> f a * ``` * * @category Alt * @since 1.0.0 */ export declare const alt: (that: () => Cause) => (fa: Cause) => Cause; //# sourceMappingURL=alt.d.ts.map