import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Zips `Maybe` and `Maybe` into `Maybe` using the provided zipper. * @tsplus static Maybe.Aspects zipWith * @tsplus pipeable Maybe zipWith * @tsplus location "@tsplus/stdlib/data/Maybe/zipWith" */ export declare function zipWith(that: Maybe, f: (a: A, b: B) => C): (self: Maybe) => Maybe; //# sourceMappingURL=zipWith.d.ts.map