/** * @license * Copyright 2019 Ludan Stoecklé * SPDX-License-Identifier: Apache-2.0 */ export declare class GermanDictHelper { private adjectives; private nouns; isAdj(ff: string): boolean; isNoun(ff: string): boolean; getNoun(ff: string): string; getAdj(ff: string): string; }