/** * Checks if all array's values are unique. Comparison for objects is reference-based. * If null or undefined is given then this function returns false. * * @param value The array being checked. * @returns True if all array's values are unique, false otherwise. */ export declare function isArrayUnique(array: any[]): boolean;