import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Extracts the value out of the structure, if it exists. Otherwise returns * `null`. * @tsplus getter Maybe toNullable * @tsplus location "@tsplus/stdlib/data/Maybe/toNullable" */ export declare function toNullable(self: Maybe): A | null; //# sourceMappingURL=toNullable.d.ts.map