import type { Maybe } from './maybe.js';
/**
 *  Return _a_ if _a_ is not `null` and `undefined`.
 *  Otherwise, return _b_.
 */
export declare function orForMaybe<T>(a: Maybe<T>, b: Maybe<T>): Maybe<T>;
