/** * @internal */ export declare const asyncCurry: (fn: (...args: Args) => Promise) => CurriedAsyncFunction; /** * @internal */ export type CurriedAsyncFunction = Args extends [infer First, ...infer Rest] ? Rest extends [] ? (arg: First) => Promise : (arg: First) => CurriedAsyncFunction : () => Promise; //# sourceMappingURL=async-curry.d.ts.map