import type { Managed } from "./model"; /** * Returns a managed that executes both this managed and the specified managed, * in parallel, combining their results with the specified `f` function. */ export declare const mapBothPar_: ( fa: Managed, fb: Managed, f: (a: A, b: B) => C ) => Managed; /** * Returns a managed that executes both this managed and the specified managed, * in parallel, combining their results with the specified `f` function. */ export declare const mapBothPar: ( fb: Managed, f: (a: A, b: B) => C ) => (fa: Managed) => Managed; export declare const apPar_: ( fab: Managed B>, fa: Managed ) => Managed; export declare const apFirstPar_: ( fa: Managed, fb: Managed ) => Managed; export declare const apSecondPar_: ( fa: Managed, fb: Managed ) => Managed; //# sourceMappingURL=apply-par.d.ts.map