/** * If Helper Operator. */ export declare function If(condition: any, value1: T1): T1 | undefined; /** * If Helper Operator. */ export declare function If(condition: any, value1: T1, value2: T2): T1 | T2 | undefined;