import { Option } from '../option'; import { Either } from '../either'; import { Try } from './algebra'; export declare const success: (a: A) => Try; export declare const failure: (e: Error) => Try; export declare const of: (thunk: () => A) => Try; export declare const fromOption: (o: Option) => Try; export declare const fromEither: (ea: Either) => Try; //# sourceMappingURL=constructors.d.ts.map