/** * Compose together an array of functions into a higher-order function. */ declare const compose: (...fns: Function[]) => (res: any) => any; export default compose;