//#region src/common/data/string-deburr.d.ts /** * Deburrs `string` by converting * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A) * letters to basic Latin letters and removing * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks). * * @param {string} string The string to deburr. * @returns {string} Returns the deburred string. * @example * * deburr('déjà vu') * // => 'deja vu' */ declare function deburr(string: string): string; //#endregion export { deburr as t }; //# sourceMappingURL=string-deburr-Cv_lg211.d.cts.map