/**
 * Merge together functions into a combined output: fn(f(), g())
 */
declare const merge: (fn: Function, f: Function, g: Function) => (...args: any[]) => any;
export default merge;
