import { type Iteratee } from '../internal/iteratee.js'; /** * Create a union of two arrays using an iteratee to determine uniqueness. * * @param arr1 - First array * @param arr2 - Second array * @param iteratee - Function or property path to derive comparison key * @returns New array of unique values * * @example * unionByFast([{ id: 1 }, { id: 2 }], [{ id: 2 }, { id: 3 }], 'id') * // [{ id: 1 }, { id: 2 }, { id: 3 }] */ export declare function unionByFast(arr1: readonly T[], arr2: readonly T[], iteratee: Iteratee): T[]; //# sourceMappingURL=union.d.ts.map