/**
 * Merges previous and next arrays into a new array while removing duplicates (using `Set`).
 */
export declare function mergeArray<T extends unknown[]>(prev: T, next: T): T;
//# sourceMappingURL=mergeArray.d.ts.map