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