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