/** * Returns a Set containing all the duplicate elements in an array of strings. * @param arr - The input array of strings. * @returns A Set object containing the duplicate elements found in the input array. */ export declare function getDuplicateElements(arr: string[]): Set; //# sourceMappingURL=duplicates.d.ts.map