declare type MAXBY = { [key: string]: any; } | undefined; declare function maxBy(array: MAXBY[] | null, key: string): MAXBY; export default maxBy;