import { MutableList } from '../_internal/MutableList.d.js'; import { RejectReadonly } from '../_internal/RejectReadonly.d.js'; /** * This method is like `_.pull` except that it accepts an array of values to remove. * * **Note:** Unlike `_.difference`, this method mutates `array`. * * @template T * @param {T[]} array - The array to modify. * @param {ArrayLike} [values] - The values to remove. * @returns {T[]} Returns `array`. * * @example * var array = [1, 2, 3, 1, 2, 3]; * * pullAll(array, [2, 3]); * console.log(array); * // => [1, 1] */ declare function pullAll(array: T[], values?: ArrayLike): T[]; /** * This method is like `_.pull` except that it accepts an array of values to remove. * * **Note:** Unlike `_.difference`, this method mutates `array`. * * @template L * @param {RejectReadonly} array - The array to modify. * @param {List} [values] - The values to remove. * @returns {L} Returns `array`. * * @example * var array = [1, 2, 3, 1, 2, 3]; * * pullAll(array, [2, 3]); * console.log(array); * // => [1, 1] */ declare function pullAll>(array: RejectReadonly, values?: ArrayLike): L; export { pullAll };