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