import type { Option } from './option.js'; type And = { (b: B): (a: A) => Option.Union; (b: B, a: A): Option.Union; }; /** * Combines two `Option`s, returning the second `Option` if both are `Some`, and `None` otherwise. * * @tags option, transform, transform-option */ export declare const and: And; export {};