/**
 * Curry a function from right
 * @param fn
 */
declare const curryR: (fn: Function) => Function;
export default curryR;
