/**
 * Remove a single item from the array.
 * (it won't remove duplicates, just a single item)
 */
declare function remove(arr: any, item: any): void;
export default remove;
