/** * Removes all instances of specified elements from an array. * * @since 1.0.0 * * @template T * @param {T[]} array - The array to modify. * @param {T[]} elementsToRemove - The elements to remove from the array. * @returns {T[]} - The modified array with specified elements removed. * * @example * * const arr = ['a', 'b', 'c', 'a', 'b', 'c']; * * pullAll(arr, ['a', 'c']); * * console.log(arr); * // expected output: ['b', 'b'] */ declare const pullAll: (array: T[], elementsToRemove: T[]) => T[]; export default pullAll;