//#region src/remove-accents.d.ts declare const characterMap: Record; /** * Removes accents from a string. * * @param str - The string to remove accents from * @returns The string without accents */ declare const removeAccents: (str: string) => string; //#endregion export { characterMap, removeAccents }; //# sourceMappingURL=remove-accents.d.mts.map