import { type Result } from '../core/result.js';
/**
 *  Return _b_ if _a_ is `Ok(T)`.
 *  Otherwise, return _a_.
 */
export declare function andForResult<T, U, E>(a: Result<T, E>, b: Result<U, E>): Result<U, E>;
