/** * Performs left-to-right function composition for asynchronous functions. */ export declare const pipe: (...fns: any[]) => (arg: any) => Promise;