export type AnyObject = Record; /** * Compare two arrays for equality. * This function checks if both arrays contain the same elements in the same order, * including nested structures. * * @param arr1 - The first array to compare. * @param arr2 - The second array to compare. * @returns - A boolean indicating if the arrays are equal. */ export declare const compareArrays: (arr1: unknown[], arr2: unknown[]) => boolean;