/** * Takes an Amharic word and returns the stem through affix-removal with longest match. * @param word : word possibly containing one or more affix * @returns : the stem of the word passed * * @example {stem word with affix} * stem("ልጆቻቸውን") // returns "ልጅ" */ declare function stem(word: string): string; export default stem;