/**
 * Return only the unique values in an Array.
 */
export declare function arrayUnique(arr: Array<any>): Array<any>;
