/** * Returns true if {value} has equality with any item in {args} * * @since v1.4.0 * @category Logic * @template {T} - The type of value * @param {T} value - The value to compare against * @param {*[]} args - Known values to compare against {value} * @returns {boolean} * @example * or('item', 25, 7, 'item') //=> true * or('item', 25, 7, 'something') //=> false */ export declare const or: (value: T, ...args: any[]) => boolean;