import { FunctionReturningType } from '../types'; export declare const ifThenElse: (ifFn: FunctionReturningType, thenFn: FunctionReturningType, elseFn?: FunctionReturningType) => (...args: any) => B | C;