import type { Either, Next } from '../types'; export declare const left: (value: L) => Either; export declare const right: (value: R) => Either; export declare const nextValid: (value: Output) => Next; export declare const nextNotValid: (value: Output) => Next; //# sourceMappingURL=either.d.ts.map