import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Constructs a new `Maybe` from a nullable type. If the value is `null` or * `undefined`, returns `None`, otherwise returns the value wrapped in a `Some`. * @tsplus static Maybe.Ops fromNullable * @tsplus location "@tsplus/stdlib/data/Maybe/fromNullable" */ export declare function fromNullable(a: A): Maybe>; //# sourceMappingURL=fromNullable.d.ts.map