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 both_: ( self: Managed, that: 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 both: ( that: Managed ) => (self: Managed) => Managed; //# sourceMappingURL=applicative-seq.d.ts.map