/**
 * Return a new Array with elements that aren't present in the other Arrays.
 */
declare function difference(arr: any, ...others: any[]): any[];
export default difference;
