/**
 * Returns only unique items from the given arrays
 * @param items - arrays of items
 */
export declare function unique<T>(...items: T[][]): T[];
