/**
 * Sort the array alphabetically
 *
 * We clone the original array, so that we avoid mutation.
 *
 * @param array - an array of strings that are required to be sorted alphabetically
 * @return string[]
 */
export declare const sortArray: (array: string[]) => string[];
//# sourceMappingURL=sortArray.d.ts.map