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 __call * @tsplus location "@tsplus/stdlib/data/Maybe/apply" */ export declare function apply(a: A): Maybe>; //# sourceMappingURL=apply.d.ts.map