export declare enum ArraySortingDirections { ASC = 0, DESC = 1 } export declare const sortBy: (array: T[], key: keyof T, direction?: ArraySortingDirections) => T[]; export declare const sortByDesc: (array: T[], key: keyof T) => T[];