/** * compose a set of functions over an argument * * @author Nick Krause * @license MIT */ declare const compose: (...fns: ((v: T) => any)[]) => (x: T) => any; export { compose };