/** * Pipe with support for async functions * @param {array} array of functions * @returns single function */ export declare const pipeP: (fns: (() => any)[]) => (arg: any) => Promise;