/**
 * Get a list of duplicate values from an array.
 */
export declare function getDupes<T>(arr: T[]): Set<T>;
