/** * @description * It returns the index of the first duplicate value it encounters in the array. * It returns `-1` when the array has no duplicates. */ export declare function getIndexOfFirstDuplicateValueOfArray(array: unknown[]): number;