export default or;
/**
 * Logical or operator for convenience.
 * @param {boolean} a - Value A
 * @param {boolean} b - Value B
 * @return {boolean} If `true` one of the two or both values are truthy.
 */
declare function or(a: boolean, b: boolean): boolean;
