export type ComposableFun = (arg: A) => A | Promise; declare function asyncPipeline(...fns: Array>): ComposableFun; export default asyncPipeline;