/**
 * Creates an array of unique values from all given arrays.
 *
 * @remarks
 * This function takes two arrays, merges them into a single array, and returns a new array
 * containing only the unique values from the merged array.
 *
 * @example
 * ```ts
 * const array1 = [1, 2, 3];
 * const array2 = [3, 4, 5];
 * const result = union(array1, array2);
 * // result will be [1, 2, 3, 4, 5]
 * ```
 *
 * @param arr1 - The first array to merge and filter for unique values.
 * @param arr2 - The second array to merge and filter for unique values.
 * @returns A new array of unique values.
 */
export declare function union<T>(arr1: readonly T[], arr2: readonly T[]): T[];
