export interface Pipe2 { (g: (x: A) => B, f: (x: B) => C): (x: A) => C; } export declare const pipe2: Pipe2;