import type { If } from '../types/index.js';
export declare const ifThenElse: <CONDITION extends boolean | undefined, THEN, ELSE>(condition: CONDITION, then: THEN, els: ELSE) => If<CONDITION, THEN, ELSE>;
