import { FunctionA1 } from'../types';
/**
* Compose two or more function into one function.
*
* @param {function} fnl
* @param {function[]} fns
*/exportdefaultfunction compose<A>(fnl: FunctionA1<any, any>, ...fns: FunctionA1<A, any>[]): (input: A) =>any;