/** * 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. */ export declare function sortNumericValues(values: T[]): T[];