import { LazyArg } from "@tsplus/stdlib/data/Function"; import { Either } from "@tsplus/stdlib/data/Either/definition"; /** * Takes a default and a nullable value, if the value is not nully, turn it * into a `Right`, if the value is nully use the provided default as a `Left`. * @tsplus static Either.Ops fromNullable * @tsplus location "@tsplus/stdlib/data/Either/fromNullable" */ export declare function fromNullable(a: A, e: LazyArg): Either>; //# sourceMappingURL=fromNullable.d.ts.map