import { Expression, PipeOperator } from '../../core';
/** Applies a fallback value if the input is undefined or null. */
export declare function ifUndefined<TIn, TFallback>(fallbackValue: Expression<TFallback>): PipeOperator<TIn, NonNullable<TIn> | TFallback>;
