/**
 * Returns a function that composes multiple functions, passing results to
 * each other.
 */
declare function compose(): (arg: any) => any;
export default compose;
