/** * Count elements of an array based on provided function */ export declare const countBy: (list: readonly T[], fn: (a: T) => string | number) => Record;