namespace CG.Utils
{
    public interface ITextNormalizer
    {
        string Normalize(string input);
    }
}
