/** * @license * Copyright 2018, Ludan Stoecklé * SPDX-License-Identifier: MIT */ import { VerbsInfo, VerbInfo, WordsInfo, WordInfo, AdjectivesInfo, AdjectiveInfo } from 'rosaenlg-commons'; export declare abstract class LanguageCodeGen { iso2: string | undefined; hasFlexVerbs: boolean | undefined; hasFlexWords: boolean | undefined; hasFlexAdjectives: boolean | undefined; constructor(); getVerbsInfo(verbs: string[]): VerbsInfo; getWordsInfo(words: string[]): WordsInfo; getAdjectivesInfo(adjectives: string[]): AdjectivesInfo; getVerbInfo(_verb: string): VerbInfo; getWordInfo(_word: string): WordInfo; getAdjectiveInfo(_adjective: string): AdjectiveInfo; }