import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Builds a new maybe constructed using the value of self. * @tsplus static Maybe.Aspects flatMap * @tsplus pipeable Maybe flatMap * @tsplus location "@tsplus/stdlib/data/Maybe/flatMap" */ export declare function flatMap(f: (a: A) => Maybe): (self: Maybe) => Maybe; //# sourceMappingURL=flatMap.d.ts.map