/** * Validate whether two arrays are the same based on Array#includes * Returns undefined if either is undefined * * @param a - The first array * @param b - The other array * @returns Whether the arrays are considered the same */ export declare function arrayEquals(a?: T[], b?: T[]): boolean; //# sourceMappingURL=arrayEquals.d.ts.map