/** * Separates words, expands {@link common_amh_abbreveations}, removes numbers, breaks up hyphenated words, and removes punctuation * @param corpus : Amharic text * @returns : Lexically analyzed Amharic text */ declare function lexAnalyze(corpus: string): string; export default lexAnalyze;