/**
* The difference will output the elements from array A that are not in the array B.
*
* @param {Array} array
* @param {Array} array2
* @returns {any[]}
*/exportdefaultfunction difference<T>(array: T[], array2: T[]): T[];
//# sourceMappingURL=difference.d.ts.map