import { Either } from '../either';
import { Option } from '../option';
import { Ior } from './algebra';
export declare const left: (a: A) => Ior;
export declare const right: (b: B) => Ior;
export declare const both: (a: A, b: B) => Ior;
export declare const fromEither: (ea: Either) => Ior;
export declare const fromOptions: (lhs: Option, rhs: Option) => Option>;
//# sourceMappingURL=constructors.d.ts.map