/** * Generic normalize method that removes the accents and special characters. * This method can be used to normalize the string before performing diacritic-insensitive string comparisons */ export declare const diacriticInsensitiveStringNormalizer: (value: string) => string;