import type { Dict, Primitive } from '../type'; export declare class Collection { static unique(array: T[]): T[]; static unique(array: T[], primaryKey: string): T[]; static merge(arr1: T[], arr2: T[]): T[]; static merge(arr1: T[], arr2: T[], primaryKey: string): T[]; }