/**
* Sort an array of strings in a special way that considers numeric parts within the strings.
*
* @param values An array of strings to be sorted.
* @returns A new array containing the sorted strings.
*/exportdeclarefunction sortNumericValues<T extendsstring>(values: T[]): T[];