/** * * Find the element that occurs the most in an array * * @template T * @param { T[] } arr * @returns { T } the element that appeared the most */ export declare const mostCommonValue: (arr: T[]) => T | undefined;