export * from 'fp-ts/lib/function';
/**
* Flips the order of the arguments of a binary function.
*
* Curried version of `flip` from 'fp-ts/lib/function'
*/
export declare function flip(f: (a: A) => (b: B) => C): (b: B) => (a: A) => C;
/**
* Simple binary composition. Also known as `compose2`
*/
export declare const o: (f: (y: B) => C, g: (x: A) => B) => (x: A) => C;
/**
* Flips the position of each item in a 2-tuple
*/
export declare const swap: ([x, y]: [A, B]) => [B, A];