/**
 * Remove all instances of an item from array.
 */
declare function removeAll(arr: any, item: any): void;
export default removeAll;
