/** * @module indicative-rules */ /** * Returns a boolean telling if all 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', 'bar', 'baz'] * * if (is.intersectAll(input, compareWith)) { * } * ``` */ export declare const intersectAll: (input: any[], intersectionArray: any[]) => boolean;