export declare function mostFrequentValuesInArrayOfDictionaries(arr: {
    [key: string]: any;
}[], keys: string[]): {
    [key: string]: any;
};
