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