/**
 * Removes diacritical marks from text while preserving its other characters.
 * @param text - The text to normalize
 * @returns The text without accents
 */
declare const removeAccents: (text: string) => string;
export default removeAccents;
