/**
 * swap a given function 's params
 * @param fn
 */
declare const swap: (fn: any) => (a: any, b: any) => any;
export default swap;
