export declare const ternary: <E>(else_: E) => <T>(then: T) => (condition: boolean) => E | T;
