/**
 * Created by beenotung on 12/26/16.
 */
export declare function curry<A extends Function>(f: Function): A;
export declare const id: Function;
/** internal func, use id() instead */
export declare function autoCurry<A extends Function>(f: Function): A;
