import { Maybe } from './Maybe'; /** * Applies a function to the value possibly contained in a `Maybe`. If the * maybe is a `Nothing` just the `Nothing` is returned. * @name map(f: (value: A) => B, maybe: Maybe): Maybe */ export declare const map: { (f: (value: A) => B, maybe: Maybe): Maybe; (f: (value: A_1) => B_1): (maybe: Maybe) => Maybe; }; //# sourceMappingURL=map.d.ts.map