import type { Managed } from "./model"; /** * Returns a managed that executes both this managed and the specified managed, * in sequence, combining their results with the specified `f` function. */ export declare const mapBoth: ( that: Managed, f: (a: A, a2: A1) => B ) => (self: Managed) => Managed; /** * Returns a managed that executes both this managed and the specified managed, * in sequence, combining their results with the specified `f` function. */ export declare const mapBoth_: ( self: Managed, that: Managed, f: (a: A, a2: A1) => B ) => Managed; //# sourceMappingURL=apply-seq.d.ts.map