import type { Either, Left, Right } from "./model"; /** * ```haskell * isLeft :: Either e a -> is Left e * ``` * * Returns `true` if the either is an instance of `Left`, `false` otherwise * * @category Guards * @since 1.0.0 */ export declare const isLeft: (fa: Either) => fa is Left; /** * ```haskell * isRight :: Either e a -> is Right a * ``` * * Returns `true` if the either is an instance of `Right`, `false` otherwise * * @category Guards * @since 1.0.0 */ export declare const isRight: (fa: Either) => fa is Right; //# sourceMappingURL=guards.d.ts.map