/**
 * Compares if two arrays have the same exact values.
 * @param array1
 * @param array2
 */
export declare const sameValues: (array1: unknown[], array2: unknown[]) => boolean;
