import type { Eq } from "@principia/prelude/Eq"; import type { Either } from "../Either"; /** * ```haskell * getEq :: (Eq e, Eq a) -> Eq (Either a e) * ``` * * @category Instances * @since 1.0.0 */ export declare const getEq: (eqE: Eq, eqA: Eq) => Eq>; //# sourceMappingURL=eq.d.ts.map