/** * Removes duplicates from specified array */ export declare function unique(arr: T[]): T[]; /** * Returns true for items, that only exists once on an array */ export declare const uniqueFilter: (item: T, index: number, arr: T[]) => boolean;