/**
 * Compares two arrays for equality (order-independent)
 * @param a - First array
 * @param b - Second array
 * @param comparator - Optional comparator function. If not provided, uses string conversion and localeCompare
 * @returns true if arrays contain the same elements, false otherwise
 */
export declare function arraysEqual<T>(a: T[], b: T[], comparator?: (x: T, y: T) => number): boolean;
//# sourceMappingURL=arraysEqual.d.ts.map