/** * @module indicative-rules */ /** * Returns a boolean telling if any of the `input` array items are * from the `comparison` array or not. * * @example * ```js * const { is } = require('indicative') * * const input = ['foo', 'bar'] * const compareWith = ['foo', 'baz'] * * if (is.intersectAny(input, compareWith)) { * } * ``` */ export declare const intersectAny: (input: any[], intersectionArray: any[]) => boolean;