export declare class SortingService { constructor(); /** * Reverses an array */ reverseArray(value: Array): Array; /** * Compares value by value and sorts in alphabetical order using the provided key * optionally, you can have the array returned to you in reversed order by setting the reversed parameter to 'true' */ keySortByAlphabetical(value: Array, sortKey: keyof T, reversed?: boolean): Array; }