import type { Exp } from "../exp/index.js"; import * as Exps from "../exp/index.js"; /** `unfoldAp` can normalize `f(x)(y)` to `f(x, y)`. **/ export declare function unfoldAp(exp: Exp, args?: Array): { target: Exp; args: Array; }; //# sourceMappingURL=unfoldAp.d.ts.map