export declare const ifElse: (condition: (arg: T) => boolean, onTrue: (arg: T) => Result, onFalse: (arg: T) => Result) => (arg: T) => Result;