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