/** * Returns elements from the first array that are not present in the second array * * @example * arrDiff([1, 2, 3, 4], [2, 3]); * => [1, 4] * * @param a - First array * @param b - Second array */ export declare const arrDiff: (a: unknown[], b: unknown[]) => Type; export { arrDiff as arrayDiff, arrDiff as arrayDifference, }; //# sourceMappingURL=arrDiff.d.ts.map