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