import { Maybe } from "@tsplus/stdlib/data/Maybe/definition";
/**
* This is `chain` + `fromNullable`, useful when working with optional values.
* @tsplus static Maybe.Aspects mapNullable
* @tsplus pipeable Maybe mapNullable
* @tsplus location "@tsplus/stdlib/data/Maybe/mapNullable"
*/
export declare function mapNullable(f: (a: A) => B | null | undefined): (self: Maybe) => Maybe;
//# sourceMappingURL=mapNullable.d.ts.map