export declare function pipe<A, B>(value: A, ...functions: any[]): B;
export declare function compose(...functions: any[]): (value: any) => any;
