/**
 * Returns `true` if both arguments are `true`; `false` otherwise.
 * @since v0.1.0
 * @param  a
 * @param  b
 * @return  the first argument if it is falsy, otherwise the second argument.
 */
declare const or: (a: any, b: any) => boolean;
export default or;
